Last active
November 23, 2021 17:49
-
-
Save rahgurung/f0e45c9a73b25ffb56a2174ca247f76e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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