Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created March 23, 2013 07:42
Show Gist options
  • Select an option

  • Save aaronfrost/5226853 to your computer and use it in GitHub Desktop.

Select an option

Save aaronfrost/5226853 to your computer and use it in GitHub Desktop.
Arrow Function - 8 - Difference
var foo = () => console.log("foo");
// similar to
var bar = function(){
console.log('bar';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment