Skip to content

Instantly share code, notes, and snippets.

@shaunwallace
Last active August 29, 2015 14:09
Show Gist options
  • Save shaunwallace/b4ccd4880b21d823cde9 to your computer and use it in GitHub Desktop.
Save shaunwallace/b4ccd4880b21d823cde9 to your computer and use it in GitHub Desktop.
Object.keys()
var obj10 = {
x : 1,
y : 2,
z : 3
};
var arr1 = ['a', 'b', 'c'];
Object.keys( obj10 ); // returns ["x", "y", "z"]
Object.keys( arr1 ); // returns ["0", "1", "2"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment