Created
February 24, 2020 23:12
-
-
Save manakuro/43a6a1a3da1a377979432d8b0af1d848 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
function doubleSay (str) { | |
return str + ", " + str; | |
} | |
function capitalize (str) { | |
return str[0].toUpperCase() + str.substring(1); | |
} | |
function exclaim (str) { | |
return str + '!'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment