Created
April 3, 2018 18:38
-
-
Save LearningMaterial/8b9c35fc1a8c6e2f72302aaf0f20efd9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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