Guest User

Untitled

a guest
Jan 16th, 2018
78
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. function shouter(whatToShout) {
  5.  
  6. return `${whatToShout.toUpperCase()}!!!`;
  7.  
  8. }
  9.  
  10. function textNormalizer(text) {
  11. return text.trim().toLowerCase();
  12. }
Add Comment
Please, Sign In to add comment