Created
May 6, 2020 18:08
-
-
Save BanksySan/5e4d26830c3fcc1f887e32aa14d3fa78 to your computer and use it in GitHub Desktop.
Blog: JavaScript prototype & __proto__ (1)
This file contains hidden or 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
var foo = {id: 'Foo'}; | |
var bar = Object.create(foo) | |
console.log(`bar.id = ${bar.id}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment