Skip to content

Instantly share code, notes, and snippets.

@dazld
Created November 25, 2014 13:22
Show Gist options
  • Save dazld/70c47dfe2c64bcd343b6 to your computer and use it in GitHub Desktop.
Save dazld/70c47dfe2c64bcd343b6 to your computer and use it in GitHub Desktop.
var func = function(){
console.log(func.prop);
}
func.prop = 'A';
var otherFunc = function(){
console.log('other:', otherFunc.prop)
}
otherFunc.prototype = Object.create(func);
func(); // A
otherFunc(); // other: undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment