Skip to content

Instantly share code, notes, and snippets.

@rahgurung
Last active November 24, 2021 14:29
Show Gist options
  • Save rahgurung/90af852f42fab51f8a6a858d65b8ac2a to your computer and use it in GitHub Desktop.
Save rahgurung/90af852f42fab51f8a6a858d65b8ac2a to your computer and use it in GitHub Desktop.
function increase() {
// increment each time
this.x++;
}
// Create a property to the function object
increase.x = 0;
// Call function few times with using itself as `this`
increase.call(increase);
increase.call(increase);
console.log(increase.x); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment