Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function textNormalizer(text) {
  2. return text.toLowerCase().trim();
  3.  
  4. }
  5. let text = " let's GO SURFING NOW everyone is learning how ";
  6. console.log(textNormalizer(text));
  7.  
  8. function testTextNormalizer() {
  9. const text = " let's GO SURFING NOW everyone is learning how ";
  10. const expected = "let's go surfing now everyone is learning how";
  11. if (textNormalizer(text) === expected) {
  12. console.log('SUCCESS: `textNormalizer` is working');
  13. } else {
  14. console.log('FAILURE: `textNormalizer` is not working');
  15. }
  16. }
  17.  
  18. testTextNormalizer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement