Skip to content
Subhajit Sahu edited this page Dec 28, 2022 · 15 revisions

Check if any value satisfies a test.

Similar: some, every.


function some(x, ft)
// x:  lists
// ft: test function (v, k, x)
const xlists = require('extra-lists');

var x = [['a', 'b', 'c', 'd'], [1, 2, -3, -4]];
xlists.some(x, v => v > 10);
// → false

xlists.some(x, v => v < 0);
// → true


References

Clone this wiki locally