Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 31, 2018 09:15
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 debugmodedotnet/082a37c5df44a3c25c1e7856af704d47 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/082a37c5df44a3c25c1e7856af704d47 to your computer and use it in GitHub Desktop.
const babycat = {
age: '1',
color: 'white'
}
Object.defineProperty(babycat, 'age', { enumerable: false });
for (var prop in babycat) {
console.log(prop);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment