Skip to content

Instantly share code, notes, and snippets.

@cecchi
Created July 1, 2015 21:09
Show Gist options
  • Save cecchi/d5af0ac0df77cb20e66f to your computer and use it in GitHub Desktop.
Save cecchi/d5af0ac0df77cb20e66f to your computer and use it in GitHub Desktop.
function Foo() {
this.prop = 'value';
this.bar = function() {
return function() {
return this.prop;
};
};
}
var foo = new Foo();
console.log( 'fn', foo.bar() );
console.log( 'prop', foo.bar()() );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment