Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created November 2, 2019 13:14
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/aeea808cf37aaf83784017019b5c2e05 to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/aeea808cf37aaf83784017019b5c2e05 to your computer and use it in GitHub Desktop.
// Example of Single object
const user = {
firstName: 'Akash',
lastName: 'Rajvanshi',
age: 22,
getDetails() {
console.log(`I am ${this.firstName} ${this.lastName}`)
}
}
user.getDetails() // I am Akash Rajvanshi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment