how to get the index of filtered array?
for example I wanna to get the index of even number
JavaScript
x
6
1
let nums = [1,2,3,4,5,6,7];
2
3
let filterNum = nums.filter(num=> num %2 ==0);
4
5
console.log(filterNum);
6
Advertisement
Answer
Use .reduce
:
JavaScript
1
6
1
const nums = [1,2,3,4,5,6,7];
2
const filterNum = nums.reduce((acc, num, index) => {
3
if(num%2 === 0) acc.push(index);
4
return acc;
5
}, []);
6
console.log(filterNum);