Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created November 2, 2019 13:42
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/ab1935f5254e24f9df7d5e2d066f02e1 to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/ab1935f5254e24f9df7d5e2d066f02e1 to your computer and use it in GitHub Desktop.
const fullName = {
first: 'Akash',
last: 'Rajvanshi',
get full() {
return `${this.first} ${this.last}`
}
};
console.log(fullName.full) // Akash Rajvanshi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment