How to find 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.find(checkValue));
  
  
  
/*
  
run:
  
94
  
*/

 



answered Nov 3, 2024 by avibootz
...