Skip to content

Instantly share code, notes, and snippets.

@sebass-surfer
Last active April 2, 2018 22:11
Show Gist options
  • Save sebass-surfer/7b347cd42ed7422688c44434c2e1dc0d to your computer and use it in GitHub Desktop.
Save sebass-surfer/7b347cd42ed7422688c44434c2e1dc0d to your computer and use it in GitHub Desktop.
function wisePerson(wiseType, whatToSay) { return `A wise ${wiseType} once said: "${whatToSay}".`; }
function shouter(whatToShout) { return `${whatToShout.toUpperCase()}!!!`; }
function textNormalizer(text) { return text.toLowerCase().trim(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment