Skip to content

Instantly share code, notes, and snippets.

@kamituel
Created December 23, 2013 12:40
Show Gist options
  • Save kamituel/8096458 to your computer and use it in GitHub Desktop.
Save kamituel/8096458 to your computer and use it in GitHub Desktop.
Object as an array indice.
var array = ['a', 'b', 'c'];
var obj = {
toString: function() {
return "1";
}
};
// array[obj] === 'b'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment