“Finden Sie Vokal” Code-Antworten

Finden Sie Vokal

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); } );
Lovely Louse

// BEST and FASTER implementation using regex
const countVowels = (str) => (str.match(/[aeiou]/gi) || []).length
Fylls

Ähnliche Antworten wie “Finden Sie Vokal”

Fragen ähnlich wie “Finden Sie Vokal”

Weitere verwandte Antworten zu “Finden Sie Vokal” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen