Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active September 26, 2015 19:52
Show Gist options
  • Save qetr1ck-op/c4ac921c558015b4a481 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/c4ac921c558015b4a481 to your computer and use it in GitHub Desktop.
var animal = {
eats: true
};
function Rabbit(name) {
this.name = name;
//this.__proto__ = animal; won't work in IE10+
}
Rabbit.prototype = animal; //only object, primitives won't work
var rabbit = new Rabbit("Banny"); // 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