Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created October 12, 2010 02:07
Show Gist options
  • Save qoelet/621544 to your computer and use it in GitHub Desktop.
Save qoelet/621544 to your computer and use it in GitHub Desktop.
var kitchen = {
spoons: 2
}
kitchen.__proto__.wallpaper = function() { alert("blue"); }
var kitchen2 = {
spoons: 5,
__proto__: kitchen
}
kitchen.wallpaper(); // alerts 'blue'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment