Skip to content

includes

Subhajit Sahu edited this page Feb 3, 2021 · 19 revisions

Checks if iterable has a value. 🏃 📼 📦 🌔 📒

Similar: search, indexOf, hasValue, includes.

iterable.includes(x, v, [i]);
// x: an iterable
// v: search value
// i: start index (0)
const iterable = require("extra-iterable");

var x = [1, 2, -3];
iterable.includes(x, 3);
// false

iterable.includes(x, -3);
// true

references

Clone this wiki locally