Skip to content

Instantly share code, notes, and snippets.

@earlwlkr
Created November 9, 2016 06:34
Show Gist options
  • Select an option

  • Save earlwlkr/c722b4cae81a66938070261a4ab43b77 to your computer and use it in GitHub Desktop.

Select an option

Save earlwlkr/c722b4cae81a66938070261a4ab43b77 to your computer and use it in GitHub Desktop.
var b = {};
var a = {
f: function () {
console.log(this.value);
}
};
a.value = 2;
a.f(); // (1)
b.f = a.f;
b.f(); // (2)
// Hoi gia tri in ra tai (1) va (2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment