How to find the index of the first element in an int array that passes a test in Node.js

1 Answer

0 votes
const arr = [72, 76, 94, 100, 83, 97];
  
function checkValue(val) {
    return val >= 81;
} 
  
console.log(arr.findIndex(checkValue));
  
  
  
/*
  
run:
  
2
  
*/

 



answered Nov 3, 2024 by avibootz
edited Nov 3, 2024 by avibootz
...