Skip to content

Instantly share code, notes, and snippets.

@bterlson
Created January 16, 2014 20:24
Show Gist options
  • Save bterlson/8462759 to your computer and use it in GitHub Desktop.
Save bterlson/8462759 to your computer and use it in GitHub Desktop.
var obj = { x: 1, y: 2 }
for(var prop in obj) {
console.log(prop);
Object.defineProperty(obj, 'y', { enumerable: false });
}
// IE logs x
// Chrome/FF log x and y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment