Advertisement
Guest User

Untitled

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