Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 24, 2015 19:55
Show Gist options
  • Save qetr1ck-op/acf247f35d67290c8fbe to your computer and use it in GitHub Desktop.
Save qetr1ck-op/acf247f35d67290c8fbe to your computer and use it in GitHub Desktop.
var animal = { eats: true },
rabbit = { jumps: true };
rabbit.__proto__ = animal;
console.log(rabbit.eats) //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment