Answers for "how to print vowels and consonants in a string in javascript"

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); } );
Posted by: Guest on October-09-2020

Code answers related to "how to print vowels and consonants in a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language