Skip to content

Instantly share code, notes, and snippets.

@ahmarsuhail
Last active July 16, 2019 18:06
Show Gist options
  • Save ahmarsuhail/28904fc82b201d08e4478bc0782f2996 to your computer and use it in GitHub Desktop.
Save ahmarsuhail/28904fc82b201d08e4478bc0782f2996 to your computer and use it in GitHub Desktop.
const user = {
name: "Ahmar",
printName: function() {
console.log(this.name);
}
}
const printNameOutsideOfObject = user.printName
printNameOutsideOfObject(); //Error, cannot read property of undefined.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment