Example 1: javascript findindex
const array1 = [5, 12, 8, 130, 44]; const search = element => element > 13; console.log(array1.findIndex(search)); const array2 = [ { id: 1, dev: false }, { id: 2, dev: false }, { id: 3, dev: true } ]; const search = obj => obj.dev === true; console.log(array2.findIndex(search));
Example 2: findindex js
const array = [5, 12, 8, 130, 44]; const index = array.findIndex((item)=> item>10); console.log(array[index]);
Example 3: .findIndex(
array.findIndex(call back function)
Comments
Post a Comment