Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 answers
573 users
const arr: number[] = [50, 60, 75, 93, 101, 82, 96]; function checkValue(val: number) : boolean{ return val >= 82; } console.log(arr.find(checkValue)); /* run: 93 */