Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jonathanhawleypeters/32982dd9e2446bea6c75b5f0111dba03 to your computer and use it in GitHub Desktop.
Save jonathanhawleypeters/32982dd9e2446bea6c75b5f0111dba03 to your computer and use it in GitHub Desktop.
This is Why I Love Fat Arrow Functions in ES6 #3
var Cat = function() {
this.name = ‘Fluffball’;
this.emote = ‘meow’;
setInterval(()=>{
console.log(this.emote);
}, 2000)
};
var myNewCat = new Cat(); //meow, meow, meow… every 2 seconds ad infinitum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment