Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //Wiseguy
  2.  
  3. function wisePerson(wiseType, whatToSay) {
  4. return 'A wise ' + wiseType + ' once said: "' +
  5. whatToSay + '".';
  6. }
  7.  
  8. //Shouter
  9.  
  10. function shouter(whatToShout) {
  11. return whatToShout.toUpperCase() + '!!!';
  12. }
  13.  
  14. //Normalizer
  15.  
  16. function textNormalizer(text) {
  17. return text.toLowerCase().trim()
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement