Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active January 10, 2016 12:11
Show Gist options
  • Save qetr1ck-op/03f646b3fd8e06c63562 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/03f646b3fd8e06c63562 to your computer and use it in GitHub Desktop.
const o1 = {
prop: 'prop'
}
const o2 = Object.setPrototypeOf({
prop2: 'prop2'
}, o1);
console.log(o2.prop2, o2.prop)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment