我们需要编写一个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