Guest User

Untitled

a guest
Jun 17th, 2018
87
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. return "${whatToShout.toUpperCase()}!!!";
  6. }
  7.  
  8. function textNormalizer(text) {
  9. return text.toLowerCase().trim();
  10. }
Add Comment
Please, Sign In to add comment