Created
April 3, 2018 18:21
-
-
Save LearningMaterial/96d568df75bd9cf3d9f7dbc2d50c6653 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