Skip to content

Instantly share code, notes, and snippets.

@TheCodingLady
Created March 21, 2018 20:32
Show Gist options
  • Save TheCodingLady/2dd85fceb7c1b6c615f3aba5a3717a50 to your computer and use it in GitHub Desktop.
Save TheCodingLady/2dd85fceb7c1b6c615f3aba5a3717a50 to your computer and use it in GitHub Desktop.
const profile = {
name: 'Alex',
getName: function () {
return () => this.name;
}
}
console.log(profile.getName()());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment