Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to count vowels in a string with JavaScript

2 Answers

0 votes
function vowel_count(str) {
	const vowels = 'aeiouAEIOU';
	let count = 0;
   
	for (let i = 0; i < str.length ; i++)  {
		if (vowels.indexOf(str[i]) !== -1) {
			count += 1;
		}
	}
	
  return count;
}
 
console.log(vowel_count("javascript programming"));
   
   
     
     
/*
run:
 
6
     
*/
 
  

 



answered Sep 18, 2021 by avibootz
0 votes
function vowel_count(str) {
  	const vowels = /[aeiou]/gi;
  	const result = str.match(vowels);
  	const count = result.length;
     
  	return count;
}
  
console.log(vowel_count("javascript programming"));
    
    
      
      
/*
run:
  
6
      
*/

 



answered May 12, 2022 by avibootz

Related questions

1 answer 93 views
1 answer 140 views
1 answer 114 views
1 answer 119 views
1 answer 145 views
145 views asked Jul 26, 2020 by avibootz
1 answer 123 views
...