Skip to content

Instantly share code, notes, and snippets.

@halafi
Last active September 10, 2021 13:14
Show Gist options
  • Save halafi/d8e7cc0231324c35146921b24be8e372 to your computer and use it in GitHub Desktop.
Save halafi/d8e7cc0231324c35146921b24be8e372 to your computer and use it in GitHub Desktop.
var x = 0;
const foo = {
x: 1,
bar: {
x: 2,
fn: function () {
return this.x;
},
arrow: () => this.x,
},
};
var kek = foo.bar.fn;
var bur = foo.bar.arrow;
kek(); // 0
bur(); // 0
foo.bar.fn(); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment