DEV Community

Cover image for An easy way to count elements in a JavaScript array
Lucretius Biah
Lucretius Biah

Posted on • Updated on • Originally published at kudadam.com

An easy way to count elements in a JavaScript array

If you have a Python background, you are probably familiar with the count method in the list class.
The count method does not exist in JavaScript. For those unfamiliar with the count method, it counts the number of times an item appears in an array. For example, suppose we have a numbers array, and we want to find the number of times the number '2' appears in the array. In Python, we would do it like this.

numbers = [1,2,3,4,5,2,3,4,2,4,2]
print(numbers.count(2)) # => 4
Enter fullscreen mode Exit fullscreen mode

The code would return 4 because the number '2' appears four times in the array.
Since this technique did not exist in JavaScript, I decided to write my own.

Array.prototype.count = function (item) {
    return this.filter((x) => x === item).length;
};
Enter fullscreen mode Exit fullscreen mode

Extending JavaScript inbuilt classes can cause unexpected behaviour and conflicts with other libraries, so it's better to create custom classes instead.

In the code above, I extended the Array class and added a new method called count through the prototype. The method takes an argument called item. It then filters the array and returns the number of times item was found in the array.

To utilise the code, simply construct an array and call the count method as shown below.

let names = ['David', 'Walsh', 'David', 'Tania', 'Lucretius'];
names.count('David'); //=> 2
Enter fullscreen mode Exit fullscreen mode

Top comments (8)

Collapse
 
orashus profile image
Rash Edmund Jr

thanks man

Collapse
 
frankwisniewski profile image
Frank Wisniewski
let names = ["David","Walsh","David","Tania","Lucretius"];
names.filter(x=>x==="David").length // => 2
Enter fullscreen mode Exit fullscreen mode
Collapse
 
lubiah profile image
Lucretius Biah

Hey @frankwisniewski,
You method is much simpler. I guess I will have to update my code.
Anyways, thanks for the helpπŸ₯³πŸ₯³

Collapse
 
orashus profile image
Rash Edmund Jr

clean and short πŸ™‚

Collapse
 
xd1gital profile image
X Digital

another way to do it:

Array.prototype.count = function(item) {
  return this.reduce((a, x) => (x == item) ? a + 1 : a, 0)
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
lubiah profile image
Lucretius Biah

WowπŸ€”

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

Extending prototypes in this way is dangerous and should be done with great care. Don't forget, you are extending a core part of JS that is relied on by pretty much everything else. There's no guarantee that your code will not conflict with other code that attempts to do something similar, or will be compatible with future updates of JS itself.

That said, there are ways to do this kind of thing safely. I recently wrote a library that can be used to help you safely extend native prototypes in this manner. I call it Metho. Take a look if you're interested πŸ™‚

Collapse
 
lubiah profile image
Lucretius Biah

Hey @jonrandy metho seems really cool. I write an article about it soon