Skip to content

Instantly share code, notes, and snippets.

@indexzero
Created September 28, 2010 04:18
Show Gist options
  • Save indexzero/600399 to your computer and use it in GitHub Desktop.
Save indexzero/600399 to your computer and use it in GitHub Desktop.
var a = {
x: 1
};
var props = {
x: { value: 1 }
};
var b = Object.create(a);
var c = Object.create(a,b);
console.log(b.x); // 1
console.log(c.x); // 1
delete a.x;
console.log(b.x); // undefined
console.log(c.x); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment