# 一个字符串作为输入返回该字符串中元音字母的数量请编写一个函数 countVowels,该函数接受一个字符串作为输入,然后返回该字符串中元音字母的数量。## 输入描述一个字符串。## 输出描述 一个数字,表示该字符串中元音字母的数量。## 输入样例console.log(countVowels('hello')); // 输出 2## 输出样例console.log(countVowels('javascript')); // 输出 3console.log(countVowels('world')); // 输出 1console.log(countVowels('')); // 输出 0console.log(countVowels('aeiou')); // 输出 5console.log(countVowels('AEIOU')); // 输出 5console.log(countVowels('hjklmnpqrstvwxyz')); // 输出 0console.log(countVowels('Hello World!')); // 输出 3console.log(countVowels('To be or not to be, that is the question.')); // 输出13console.log(countVowels('Brevity is the soul of wit.')); // 输出 8## 提示遍历字符串,依次检查每个字符是否是元音字母;如果是,则将计数器加1;最后返回计数器的值。