Implement the function checkSpam(text, spamKeywords).

It should return true if text contains any of the spamKeywords, otherwise - false.
The comparison should be case insensitive.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

functions.js

export const checkSpam = (text, spamKeywords) => {
  return true;
}

solution.js

/**
 "Implement the function checkSpam(text, spamKeywords).",
 "",
 "It should return `true` if `text` contains any of the `spamKeywords`, otherwise - `false`.",
 "The comparison should be case insensitive."
 * */

import { checkSpam } from './functions.js';

const friendlyChat = 'Hey, John! Any update on the upcoming trip?';
const spamMail = 'Hey, JOHN! YoU woN 1000 tabS of ViaGrA ! ! ! ! ';
const spamKeywords = ['viagra', 'lottery', 'won', 'prize', 'prince'];

console.log(checkSpam(friendlyChat, spamKeywords));
console.log(checkSpam(spamMail, spamKeywords));