Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created August 1, 2024 07:11
Show Gist options
  • Save velotiotech/6d44f4e5462d3a112a51e15cc79289c8 to your computer and use it in GitHub Desktop.
Save velotiotech/6d44f4e5462d3a112a51e15cc79289c8 to your computer and use it in GitHub Desktop.
const obj = {
value: 29,
method: function() {
const nested = () => {
console.log("LOG 3:",this.value);
};
nested();
}
};
const obj2 = {
value: 25,
method: function() {
setTimeout(function() {
console.log("LOG 4:",this.value);
}, 1000);
}
};
obj.method();
obj2.method();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment