Skip to content

Instantly share code, notes, and snippets.

@langjt
Last active July 3, 2018 09:53
Show Gist options
  • Save langjt/93138e0abb5684cd4c95 to your computer and use it in GitHub Desktop.
Save langjt/93138e0abb5684cd4c95 to your computer and use it in GitHub Desktop.
getPrototypeChain
function getPrototypeChain(object) {
var protoChain = [];
while (object = object.__proto__) {
protoChain.push(object);
}
protoChain.push(null);
return protoChain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment