Counts values which satisfy a test. 🏃 📼 📦 🌔 📒
Alternatives: count, countAs.
array.count(x, fn); // x: an array // fn: test function (v, i, x)
const array = require('extra-array'); var x = [1, 1, 2, 2, 4]; array.count(x, v => v % 2 === 1); // 2 array.count(x, v => v % 2 === 0); // 3
There was an error while loading. Please reload this page.