- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5
count
        Subhajit Sahu edited this page May 3, 2023 
        ·
        30 revisions
      
    Count values which satisfy a test.
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