Guest User

Untitled

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