Skip to content

Instantly share code, notes, and snippets.

@fazzyA
Last active March 26, 2020 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fazzyA/828726a88a0986811a349c1b456a2096 to your computer and use it in GitHub Desktop.
Save fazzyA/828726a88a0986811a349c1b456a2096 to your computer and use it in GitHub Desktop.
arrow functions
// simple function
function add(a,b){
return a+b
}
//similar arrow function
const add = (a,b) => {
return a+b
}
//shorten it more
const add = (a,b) => a+b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment