Created
July 4, 2019 09:47
-
-
Save indreklasn/61542c06f13d1a9e378c2cc7c9ff2e68 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
const add = (a, b, c) => { | |
return a + b + c | |
} | |
add(1, 2, 3) // 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment