Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active July 14, 2019 19:23
Show Gist options
  • Save indreklasn/4d8a69b1057c28a0baf80583269f1ad2 to your computer and use it in GitHub Desktop.
Save indreklasn/4d8a69b1057c28a0baf80583269f1ad2 to your computer and use it in GitHub Desktop.
// What's the difference?
const sayHello = name => console.log(name)
function sayHello(name) {
console.log(`${name}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment