w3resource

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
// Define a function 'countOccurrences' that counts the number of occurrences of a value in an array.
const countOccurrences = (arr, val) =>
  arr.reduce((a, v) => (v === val ? a + 1 : a), 0);

// Example usages:
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 1)); // Output: 3
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 2)); // Output: 2
console.log(countOccurrences([1, 1, 2, 1, 2, 3], 3)); // Output: 1

Output:

3
2
1

Visual Presentation:

JavaScript Fundamental: Count the occurrences of a value in an array
JavaScript Fundamental: Count the occurrences of a value in an array

Flowchart:

flowchart: Count the occurrences of a value in an array

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript-exercises/fundamental/javascript-fundamental-exercise-70.php