Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //WisePerson generator
- function wisePerson(wiseType, whatToSay) {
- return ("A wise " + wiseType + " once said: \"" +
- whatToSay + "\".");
- console.log(phrase);
- }
- //Shouter
- function shouter(whatToShout) {
- return whatToShout.toUpperCase() + "!!!";
- }
- //Text Normalizer
- function textNormalizer(text) {
- var del_blanks = text.trim();
- var lower = del_blanks.toLowerCase();
- return lower;
- }
Add Comment
Please, Sign In to add comment