Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #316 Count occurrences in a list

Determine the number c of elements in the list x that satisfy the predicate p.

let c = x.filter(p).length

Array.prototype.filter takes in a predicate function, and runs it for every element in the array, if the predicate returns true, the element is kept, but if not, the element is removed.

So, c is the length of the array returned by Array.prototype.filter.
  
c=count(p(x))

p has to be an elemental function with an argument of the type of x.

New implementation...