Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created April 3, 2018 18:38
Show Gist options
  • Save LearningMaterial/8b9c35fc1a8c6e2f72302aaf0f20efd9 to your computer and use it in GitHub Desktop.
Save LearningMaterial/8b9c35fc1a8c6e2f72302aaf0f20efd9 to your computer and use it in GitHub Desktop.
var profile = {
firstName: "Tamim",
lastName: "Iqbal",
fullName() {
return `${this.firstName} ${this.lastName}`;
}
};
console.log(profile.fullName());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment