Contact: aviboots(AT)netvision.net.il
40,877 questions
53,285 answers
573 users
const array = [3, 6, 1, 8, 9, 4, 5]; const found = array.find(element => element > 5); console.log(found); /* run: 6 */