Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
const arr = [72, 76, 94, 100, 83, 97]; function checkValue(val) { return val >= 81; } console.log(arr.find(checkValue)); /* run: 94 */