Created
April 13, 2018 03:32
-
-
Save mohanadkaleia/dcab6f33052d63b7d9747504e2aa17ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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