9. Write a JavaScript function that accepts two arguments, a string and a letter and the function will count the number of occu | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

9. Write a JavaScript function that accepts two arguments, a string and a letter and the function will count the number of occu

9. Write a JavaScript function that accepts two arguments, a string and a letter and the function will count the number of occurrences of the specified letter within the string. Sample arguments : 'w3resource.com', 'o' Expected output : 2 .

17th Dec 2016, 10:26 AM
Mohameddd Alanzy
Mohameddd Alanzy - avatar
2 Answers
- 2
just make a loop that iterates through the string and check if the current character equals the second argument. If it is true, then add 1 to a variable storing the number of ocurrences. Once it iterates over the whole atring, return the variable.
30th Dec 2016, 3:17 PM
Alejandro Aristizabal
Alejandro Aristizabal - avatar
- 2
function char_count(str, letter) { var letter_Count = 0; for (var position = 0; position < str.length; position++) { if (str.charAt(position) == letter) { letter_Count += 1; } } return letter_Count; } console.log(char_count('w3resource.com', 'o'));
28th Jun 2019, 9:13 AM
Ahadi Habib Josue
Ahadi Habib Josue - avatar