Skip to content

findRight

wolfram77 edited this page Mar 31, 2020 · 28 revisions

Finds rightmost value passing the test.

Alternatives: left, right, all.

iterable.findRight(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.findRight(x, v => v % 2 == 0);
// 4              ^

iterable.findRight(x, v => v % 2 == 1);
// 5                 ^

references

Clone this wiki locally