Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 30 revisions

Counts values which satisfy a test. 📦 😺 🏃 📼 🌔 📜 📰 📘

Alternatives: count, countAs.
Similar: count, partition.


array.count(x, ft);
// x:  an array
// ft: 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


References

Clone this wiki locally