JavaScript 中数组内的元音数量
javascriptweb developmentfront end technologyobject oriented programming
我们需要编写一个 JavaScript 函数,该函数接受一个字符串数组(它们可能是单个字符或大于该字符)。我们的函数应该只是计算数组中包含的所有元音。
示例
让我们编写代码 −
const arr = ['Amy','Dolly','Jason','Madison','Patricia']; const countVowels = (arr = []) => { const legend = 'aeiou'; const isVowel = c => legend.includes(c); let count = 0; arr.forEach(el => { for(let i = 0; i < el.length; i++){ if(isVowel(el[i])){ count++; }; }; }); return count; }; console.log(countVowels(arr));
输出
控制台中的输出将是 −
10