coderbyte には次のコードを使用しました。
function VowelCount(str) {
// code goes here
return str.match(/[aeiou]/gi).length;
}
// keep this function call here
// to see how to enter arguments in JavaScript scroll down
print(VowelCount(readline()));
次の部分を除いて、ほとんどのコードを理解しています。
- スラッシュと角括弧は何をしますか?
- は何をし
gi
ますか? search()
とはどう違いmatch()
ますか?どのような状況で何を使用すればよいですか?