Skip to content

Instantly share code, notes, and snippets.

@carbide-public
Created January 8, 2019 19:59
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 carbide-public/0a64cf6cdbbfa2ccd216b350a593da4b to your computer and use it in GitHub Desktop.
Save carbide-public/0a64cf6cdbbfa2ccd216b350a593da4b to your computer and use it in GitHub Desktop.
untitled
const testArrow1 = () => 'hello'
const testArrow2 = () => {
return 'hello arrow 2'
}
function testRegular () {
return 'hello reg'
}
testArrow1()
testArrow2()
testRegular()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment