Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
const arr = [{lang: 'typescript'}, {lang: 'typescript'}, {lang: 'nodejs'}, {lang: 'typescript'}]; const count = arr.filter(obj => { if (obj.lang == 'typescript') { return true; } return false; }).length; console.log(count); /* run: 3 */