Skip to content

searchRight

wolfram77 edited this page Mar 27, 2020 · 28 revisions

Searches a value from right.

Alternatives: left, right, all.

array.searchRight(x, v, [fn]);
// x:  an array
// v:  search value
// fn: compare function (a, b)
// --> index of value, -1 if not found
const array = require('extra-array');

var x = [1, 2, 3, 2, 5];
array.searchRight(x, 2);
// 3              ^

var x = [1, 2, 3, -2, 5];
array.searchRight(x, 2, (a, b) => Math.abs(a) - Math.abs(b));
// 3               ^

references

Clone this wiki locally