在 JavaScript 中查找数组中某个单词的所有出现位置
javascriptweb developmentfront end technologyobject oriented programming
我们需要编写一个 JavaScript 函数,该函数将文字数组作为第一个参数,将字符串作为第二个参数。我们的函数应返回该字符串(由第二个参数提供)在数组中出现的次数。
示例
其代码为 −
const arr = ["word", "a word", "another word"]; const query = "word"; const findAll = (arr, query) => { let count = 0; count = arr.filter(el => { return el.indexOf(query) != -1; }).length; return count; }; console.log(findAll(arr, query));
输出
控制台中的输出将是 −
3