Check for multiple words
问题 I have one problem with this code when I add more than one word to the titleIs Var it does not fire the if statement. The top one does not work ie if a word is in Var titleIs and is in var words, fire the if statement. Thank you for your help! var titleIs = ['Knit', 'Main']; var words = ['Woven', 'Main']; var regex = new RegExp('^(' + words.join('|') + ')$'); if (regex.test(titleIs)) { alert("true") } These two work: var titleIs = ['Woven']; var words = ['Woven', 'Main']; var regex = new