Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active September 26, 2015 19:37
Show Gist options
  • Save qetr1ck-op/079e4c21baa262ca5f44 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/079e4c21baa262ca5f44 to your computer and use it in GitHub Desktop.
function Rabbit() {}
Rabbit.prototype = {
eats: true
};
var rabbit = new Rabbit();
console.log(rabbit.eats ); // (1) ?
//(1) true, from rabbit.__proto__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment