Skip to content

Instantly share code, notes, and snippets.

@rahgurung
Last active November 23, 2021 17:49
Show Gist options
  • Save rahgurung/f0e45c9a73b25ffb56a2174ca247f76e to your computer and use it in GitHub Desktop.
Save rahgurung/f0e45c9a73b25ffb56a2174ca247f76e to your computer and use it in GitHub Desktop.
function doSomething(a) {
this.x = "Hello";
this.y = "World!";
}
var bar = new doSomething();
// `this` has been bound to bar here
console.log(bar.x); // Hello
console.log(bar.y); // World!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment