Skip to content

Instantly share code, notes, and snippets.

@ahmarsuhail
Created July 16, 2019 18:51
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 ahmarsuhail/9af9408ba928e35e7ed882a529f389fd to your computer and use it in GitHub Desktop.
Save ahmarsuhail/9af9408ba928e35e7ed882a529f389fd to your computer and use it in GitHub Desktop.
const user = {
name: "Ahmar",
printName: () => {
console.log(this.name);
}
}
user.printName(); //Outputs: Undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment