Skip to content
Subhajit Sahu edited this page Feb 4, 2021 · 15 revisions

Finds a value passing a test. 📦 😺 🏃 📼 🌔 📜 📰 📘

Alternatives: find, findAll.
Similar: find, search, searchValue.


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

var x = [['a', 'b', 'c', 'd'], [1, 2, 3, 4]];
lists.find(x, v => v % 2 === 0);
// 2                             ^

lists.find(x, v => v % 8 === 0);
// undefined


References

Clone this wiki locally