Contact: aviboots(AT)netvision.net.il
39,774 questions
51,679 answers
573 users
const arr = [{lang: 'javascript'}, {lang: 'typescript'}, {lang: 'nodejs'}]; const index = arr.findIndex(element => { if (element.lang === 'nodejs') { return true; } return false; }); console.log(index); /* run: 2 */