Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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