📜  元音计数js - Javascript代码示例

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

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