Skip to content

Instantly share code, notes, and snippets.

@shaunwallace
Created November 19, 2014 12:46
Show Gist options
  • Save shaunwallace/eca81bab58f7924f9219 to your computer and use it in GitHub Desktop.
Save shaunwallace/eca81bab58f7924f9219 to your computer and use it in GitHub Desktop.
Object.getOwnPropertyNames()
var obj11 = Object.create(Object.prototype, {
foo : {
value : 27
},
bar : {
value : 39,
enumerable : true
}
});
Object.keys( obj11 ); // returns ["bar"]
Object.getOwnPropertyNames( obj11 ); // returns ["foo", "bar"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment