Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active September 26, 2015 13:23
Show Gist options
  • Save qetr1ck-op/54c9dbea765318e4a2c2 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/54c9dbea765318e4a2c2 to your computer and use it in GitHub Desktop.
let animal = {},
rabbit = {};
Object.setPrototypeOf(rabbit, animal); // rabbit.__proto__ = animal
console.log(Object.getPrototypeOf(rabbit) === animal ) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment