Guest User

Untitled

a guest
Jan 17th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function wisePerson(wiseType, whatToSay) {
  2. return `A wise ${wiseType} once said: "${whatToSay}".`;
  3. }
  4.  
  5. function shouter(whatToShout) {
  6. return `${whatToShout.toUpperCase()}!!!`;
  7. }
  8.  
  9. function textNormalizer(text) {
  10. return `${text.trim().toLowerCase()}`;
  11. }
Add Comment
Please, Sign In to add comment