Skip to content

Instantly share code, notes, and snippets.

@skeep
Created December 25, 2014 17:36
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 skeep/c85415aa811e33d1ace1 to your computer and use it in GitHub Desktop.
Save skeep/c85415aa811e33d1ace1 to your computer and use it in GitHub Desktop.
var a = [1,2,3];
Object.keys(a);
//returns ["0", "1", "2"]
Object.getOwnPropertyNames(a)
//returns ["0", "1", "2", "length"]
a.propertyIsEnumerable(0); // returns true
a.propertyIsEnumerable('length'); // returns false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment