Skip to content

Instantly share code, notes, and snippets.

@Storyyeller
Created December 29, 2017 03:49
Show Gist options
  • Save Storyyeller/1529c4123b721fe23f631e19184b63cf to your computer and use it in GitHub Desktop.
Save Storyyeller/1529c4123b721fe23f631e19184b63cf to your computer and use it in GitHub Desktop.
const obj = {
msg: 'Hello, ',
print() {
return this.msg + super.msg;
},
};
Object.setPrototypeOf(obj, {
msg: 'world!',
});
console.log(obj.print()); // Hello, world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment