References

Array.findIndex()

Leírás

Visszatér az Array példány első azon elemének indexével, ami teljesít azon feltételt, amit az argumentumba írt függvény definiál.

Szintaxis

findIndex(callbackFn)
findIndex(callbackFn, thisArg)

Példa

const array1 = [5, 12, 8, 130, 44] // 5, 12, 8
 
const isLargeNumber = (element) => element > 13
 
console.log(array1.findIndex(isLargeNumber))
// Expected output: 3
in this article
back to top