I\'m trying to filter an array that contains a bunch of urls. I need to return the urls that only contain the word \"contact\".
For example there is a link htt
htt
I realize that the question requests regex, but the sensible answer here is
someArray.filter(str => str.includes('contact'))