Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created November 2, 2019 14:03
Show Gist options
  • Select an option

  • Save AkashRajvanshi/2a91ed0af07098dc17614561e1ab1f33 to your computer and use it in GitHub Desktop.

Select an option

Save AkashRajvanshi/2a91ed0af07098dc17614561e1ab1f33 to your computer and use it in GitHub Desktop.
const user = {
firstName: 'Akash',
showDetails: function () {
return `${this.firstName} ${this.lastName}`
}
};
user['lastName'] = 'Rajvanshi'
console.log(Object.keys(user)) // [ 'firstName', 'showDetails', 'lastName' ]
console.log(user.showDetails()) // Akash Rajvanshi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment