Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created February 24, 2020 23:12
Show Gist options
  • Save manakuro/43a6a1a3da1a377979432d8b0af1d848 to your computer and use it in GitHub Desktop.
Save manakuro/43a6a1a3da1a377979432d8b0af1d848 to your computer and use it in GitHub Desktop.
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