与JavaScript中的相同,使用Array.prototype.indexOf():
console.log(channelArray.indexOf('three') > -1);
或者使用ECMAScript 2016 Array.prototype.includes():
console.log(channelArray.includes('three'));
请注意,您还可以使用@Nitzan所示的方法来查找字符串。但是,通常不会对字符串数组执行此操作,而是针对对象数组执行此操作。那里的方法更明智。例如
const arr = [{foo: 'bar'}, {foo: 'bar'}, {foo: 'baz'}];
console.log(arr.find(e => e.foo === 'bar')); // {foo: 'bar'} (first match)
console.log(arr.some(e => e.foo === 'bar')); // true
console.log(arr.filter(e => e.foo === 'bar')); // [{foo: 'bar'}, {foo: 'bar'}]
参考
Array.find()
Array.some()
Array.filter()
channelArray: string[]