value between character by vowels javascript code example
Example: how to make a vowel counter in javascript
function countVowels(str) {
return str.match(/[aeiou]/g).length;
}
function countVowels(str) {
return str.match(/[aeiou]/g).length;
}