how to print vowels and consonants in a string in javascript code example
Example 1: find vowel & consonants in a string java script
const str = "The quick brown fox jumps over a lazy dog";
const vowels = str.match(/[aeiou]/gi);
const consonants = str.match(/[^aeiou]/gi);
vowels.concat([''],consonants).forEach(k => { console.log(k); } );
Example 2: vowels consonants javascript
function readLetter() {
return prompt("Type a letter: ");
}
function isVowel(character) {
switch (character) {
case "a":
case "A":
case "e":
case "E":
case "i":
case "I":
case "o":
case "O":
case "u":
case "U":
return true;
default:
return false;
}
}
var letter = readLetter();
if (isVowel(letter)) alert("The letter is a vowel.");
else alert("The letter is consonant.");
Example 3: find vowels in string javascript
var name = userInput[0];
var count =0;
function findvowel(name)
{
var vowel = ['a','e','i','o','u','A','E','I','O','U'];
for(i=0;i<name.length;i++)
{
if(vowel.includes(name[i]))
{
count++;
}
}
return count;
}
console.log(findvowel(name));