-
Notifications
You must be signed in to change notification settings - Fork 5
indexOf
Subhajit Sahu edited this page Feb 2, 2021
·
15 revisions
Finds first index of a value. 📦 😺 🏃 📼 🌔 📜 📰 📘
Alternatives: indexOf, lastIndexOf.
Similar: search, indexOf, isValue, includes.
array.indexOf(x, v, [i]);
// x: an array
// v: search value
// i: start index (0)
const array = require("extra-array");
var x = [1, 2, 3, 2, 5];
array.indexOf(x, 2);
// 1 ^
var x = [1, 2, 3, 2, 5];
array.indexOf(x, 2, 2);
// 3 ^