Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/330091c357e903be3d35b770091b7050 to your computer and use it in GitHub Desktop.
Save manekinekko/330091c357e903be3d35b770091b7050 to your computer and use it in GitHub Desktop.
console.log(luke.constructor.toString());
/*//=>
"function Jedi(){
this.useForce = function(){
return 'I am the Instance';
};
}"
*/
console.log(luke.constructor.prototype.useForce.toString());
/*//=>
"function (){
return 'I am the Prototype';
}"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment