Skip to content

Instantly share code, notes, and snippets.

@oamaok
Created October 3, 2017 06:04
Show Gist options
  • Save oamaok/bef73971fa6d29e96c5fd6fbcaaf1510 to your computer and use it in GitHub Desktop.
Save oamaok/bef73971fa6d29e96c5fd6fbcaaf1510 to your computer and use it in GitHub Desktop.
function Foo(value) {
this.value = value;
}
Foo.prototype.bar = function () {
function someCall() {
return this.value;
}
const anotherCall = () => {
return this.value;
}
console.log('someCall()', someCall());
console.log('anotherCall()', anotherCall());
}
const foo = new Foo('Hello world!');
foo.bar();
const yetAnotherCall = foo.bar;
yetAnotherCall();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment