Skip to content

Instantly share code, notes, and snippets.

@BanksySan
Created May 6, 2020 18:08
Show Gist options
  • Save BanksySan/5e4d26830c3fcc1f887e32aa14d3fa78 to your computer and use it in GitHub Desktop.
Save BanksySan/5e4d26830c3fcc1f887e32aa14d3fa78 to your computer and use it in GitHub Desktop.
Blog: JavaScript prototype & __proto__ (1)
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