Skip to content

Instantly share code, notes, and snippets.

@luchoching
Created March 27, 2015 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luchoching/ab44107cb2950bff71cc to your computer and use it in GitHub Desktop.
Save luchoching/ab44107cb2950bff71cc to your computer and use it in GitHub Desktop.
Array.indexOf
var a = {x:1, y:2};
var b = {x:3, y:4};
var arr = [a, b];
console.log(arr.indexOf(a)); //0
console.log(arr.indexOf({x:1, y:2})); //-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment