comment obtenir le nombre d'un élément spécifique d'un tableau

// Let has local scope
let array = [1, 2, 3, 5, 2, 8, 9, 2]

// Functional filter with an Arrow function
array.filter(x => x === 2).length  // -> 3
Funny Fowl