Skip to content

Instantly share code, notes, and snippets.

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