@extra-array/filter.min
v2.10.19
Published
Keeps values which pass a test.
Downloads
344
Readme
Keeps values which pass a test. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
Alternatives: filter, filter$, filterAt. Similar: map, filter, reject, reduce, accumulate.
This is part of package extra-array.
This is browserified, minified version of @extra-array/filter. It is exported as global variable array_filter. CDN: unpkg, jsDelivr.
array.filter(x, ft);
// x: an array
// ft: test function (v, i, x)
const array = require("extra-array");
var x = [1, 2, 3, 4, 5];
array.filter(x, v => v % 2 === 1);
// [ 1, 3, 5 ]
array.filter(x, v => v % 2 === 0);
// [ 2, 4 ]