📜  计算字符串中的元音 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:51.955000             🧑  作者: Mango

代码示例3
// BEST and FASTER implementation using regex
const countVowels = (str) => (str.match(/[aeiou]/gi) || []).length