Skip to content

Instantly share code, notes, and snippets.

@MattCrl
Created May 28, 2018 13:22
Show Gist options
  • Select an option

  • Save MattCrl/6ac7f094126f23579bf4501e298d43be to your computer and use it in GitHub Desktop.

Select an option

Save MattCrl/6ac7f094126f23579bf4501e298d43be to your computer and use it in GitHub Desktop.
const user = {
name: 'Alex',
getName: function() {
return (() => this.name)();
}
};
console.log(user.getName());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment