Skip to content
Subhajit Sahu edited this page May 19, 2020 · 27 revisions

Keeps the values which pass a test. 🏃 📼 📦 🌔 📒

Similar: map, filter, reduce, accumulate.

iterable.filter(x, fn, [ths]);
// x:   an iterable
// fn:  test function (v, i, x)
// ths: this argument
const iterable = require('extra-iterable');

var x = [1, 2, 3, 4, 5];
[...iterable.filter(x, v => v % 2 === 1)];
// [ 1, 3, 5 ]

[...iterable.filter(x, v => v % 2 === 0)];
// [ 2, 4 ]

references

Clone this wiki locally