Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created November 2, 2019 14:10
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 AkashRajvanshi/00b7ae5dd30c4ef14ff80b1ef0faab3d to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/00b7ae5dd30c4ef14ff80b1ef0faab3d to your computer and use it in GitHub Desktop.
const user = {
firstName: 'Akash',
showDetails: function () {
return `I am ${this.firstName} `
}
};
for (firstName in user) {
console.log("Name: " + firstName) // Name: firstName, Name: showDetails
console.log("Value: " + user[firstName]) // Value: Akash, Value: function ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment