JavaScript: Count the occurrences of a value in an array
JavaScript fundamental (ES6 Syntax): Exercise-70 with Solution
Write a JavaScript program to count a value in an array.
- Use Array.prototype.reduce() to increment a counter each time the specific value is encountered inside the array.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const countOccurrences = (arr, val) => arr.reduce((a, v) => (v === val ? a + 1 : a), 0);
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 1));
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 2));
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 3));
Sample Output:
3 2 1
Pictorial Presentation:
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-70-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to group the elements of an array based on the given function and returns the count of elements in each group.
Next: Write a JavaScript program to create a deep clone of an object.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join