We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Count values which satisfy a test.
Alternatives: count, countEach. Similar: count, segregate.
function count(x, ft) // x: an array // ft: test function (v, i, x)
const xarray = require('extra-array'); var x = [1, 1, 2, 2, 4]; xarray.count(x, v => v % 2 === 1); // → 2 xarray.count(x, v => v % 2 === 0); // → 3