Skip to content

Instantly share code, notes, and snippets.

@AnimeshPandey
Created February 27, 2021 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnimeshPandey/cc8d8ef4bff6298260e589c6f428eeb3 to your computer and use it in GitHub Desktop.
Save AnimeshPandey/cc8d8ef4bff6298260e589c6f428eeb3 to your computer and use it in GitHub Desktop.
Helpful example code to demonstrate the use of "this" in JavaScript for my article at https://anmshpndy.medium.com/how-well-do-you-know-this-ce4355bc9b
// Example 9. Simple 'this' binding in case of new
function setPokémon(name) {
this.name = name;
}
var catchPokémon = new setPokémon("Blastoise");
console.log(catchPokémon.name);
// Output
// "Blastoise"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment