Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function task6() {
  2. function checkSpam(str) {
  3. str = str.toLowerCase();
  4. var spam = ['sex', 'spam'];
  5.  
  6. for(var i = 0; i < spam.length; i++) {
  7. return !!~str.indexOf(spam[i]);
  8. }
  9. }
  10.  
  11. console.log(checkSpam('get new Sex videos')); //true
  12. console.log(checkSpam('[SPAM] How to earn fast money?')); //true
  13. console.log(checkSpam('New PSD template')); //false
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement