Skip to content

Instantly share code, notes, and snippets.

@mohanadkaleia
Created April 13, 2018 03:32
Show Gist options
  • Save mohanadkaleia/dcab6f33052d63b7d9747504e2aa17ef to your computer and use it in GitHub Desktop.
Save mohanadkaleia/dcab6f33052d63b7d9747504e2aa17ef to your computer and use it in GitHub Desktop.
let animal = {
eat: true
};
let rabbit = {
jump: true
}
rabbit.__proto__ = animal;
console.log(rabbit.eat); // Here it will print true in the console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment