Skip to content

Instantly share code, notes, and snippets.

@mcshakes
Created January 7, 2018 23:56
Show Gist options
  • Save mcshakes/a6831d1ea6107a28c6116d2d9f7e3e29 to your computer and use it in GitHub Desktop.
Save mcshakes/a6831d1ea6107a28c6116d2d9f7e3e29 to your computer and use it in GitHub Desktop.
Unit 2 / Lesson 2 / Project 3
function wisePerson(wiseType, whatToSay) {
return `A wise ${wiseType} once said: ${whatToSay}`;
// return 'A wise ' + wiseType + ' once said: "' + whatToSay + '".';
}
SHOUTER
function shouter(whatToShout) {
return whatToShout.toUpperCase();
}
TEXT NORMALIZER
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