Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:00
Show Gist options
  • Save st98/11369779 to your computer and use it in GitHub Desktop.
Save st98/11369779 to your computer and use it in GitHub Desktop.
var obj = Object.create(Object.prototype, {
prop: { set: undefined }
});
console.log(obj.prop); // => undefined
obj.prop = 5;
console.log(obj.prop); // => undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment