Skip to content

Instantly share code, notes, and snippets.

@ludovicwyffels
Created May 28, 2018 11:25
Show Gist options
  • Save ludovicwyffels/d08ac39272ccc6587a1e7da09807c313 to your computer and use it in GitHub Desktop.
Save ludovicwyffels/d08ac39272ccc6587a1e7da09807c313 to your computer and use it in GitHub Desktop.
let obj = {};
Object.defineProperty(obj, 'a', {
value: 1,
enumerable: false
});
Object.defineProperty(obj, 'b', {
value: 2,
enumerable: false
});
console.log(obj.propertyIsEnumerable('a'));
for(let key in obj) {
console.log(key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment