indexOf

const array = [...]
 
// 配列がxxxを含むか判断
if (array.indexOf('xxx') !== -1) {
    // 含む場合
} else {
    // 含まない場合
}