Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created August 2, 2024 09:41
Show Gist options
  • Save velotiotech/e73022973efb37a7575e9aeb31b5cc44 to your computer and use it in GitHub Desktop.
Save velotiotech/e73022973efb37a7575e9aeb31b5cc44 to your computer and use it in GitHub Desktop.
const obj = {
value: 29,
method: function() {
const nested = () => {
console.log("LOG 1: ",this.value);
};
nested();
}
};
const obj2 = {
value: 25,
method: function() {
setTimeout(function() {
console.log("LOG 2: ",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