Skip to content

Instantly share code, notes, and snippets.

@ashwinkumar2438
Last active June 20, 2021 10:05
Show Gist options
  • Save ashwinkumar2438/b5fd62b8cf3d8612745387318c5626a7 to your computer and use it in GitHub Desktop.
Save ashwinkumar2438/b5fd62b8cf3d8612745387318c5626a7 to your computer and use it in GitHub Desktop.
const one={
who(){return 'I am the one'}
}
const two={
getRoots(){
return super.who();
}
}
Object.setPrototypeOf(two,one);
two.getRoots(); //@returns "I am the one"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment