Last active
July 14, 2019 19:23
-
-
Save indreklasn/4d8a69b1057c28a0baf80583269f1ad2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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