Skip to content

Instantly share code, notes, and snippets.

@schamblee
Created January 19, 2018 16:21
Show Gist options
  • Save schamblee/ff0785705fc592907f64bec4a9dce2bf to your computer and use it in GitHub Desktop.
Save schamblee/ff0785705fc592907f64bec4a9dce2bf to your computer and use it in GitHub Desktop.
function textNormalizer(text) {
return `${text.toLowerCase().trim()}`
}
function shouter(whatToShout) {
return `${whatToShout.toUpperCase()}!!!`;
}
function wisePerson(wiseType, whatToSay) {
return `A wise ${wiseType} once said: "${whatToSay}".`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment