Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created March 23, 2013 07:36
Show Gist options
  • Save aaronfrost/5226834 to your computer and use it in GitHub Desktop.
Save aaronfrost/5226834 to your computer and use it in GitHub Desktop.
Arrow Function - 7 - Arrow Functions
function Aaron(){
this.favoriteSaying = "I love Google!";
//this.saySomething = function(){
// console.log(this.favoriteSaying);
//}
this.saySomething = () => {
console.log(this.favoriteSaying);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment