Skip to content

Instantly share code, notes, and snippets.

@MichaelWashburnJr
Created November 29, 2017 16:25
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 MichaelWashburnJr/40b437ce093e292ea51363bf2c5e2ba9 to your computer and use it in GitHub Desktop.
Save MichaelWashburnJr/40b437ce093e292ea51363bf2c5e2ba9 to your computer and use it in GitHub Desktop.
Embrace arrow functions
//old function
function test() {
return 1 + 2;
}
const test = () => {
return 1 + 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment