Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created April 3, 2018 18:21
Show Gist options
  • Save LearningMaterial/96d568df75bd9cf3d9f7dbc2d50c6653 to your computer and use it in GitHub Desktop.
Save LearningMaterial/96d568df75bd9cf3d9f7dbc2d50c6653 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