1、循环判断数组中与item中相同的元素的数量:
function count(arr, item) {
    let num = 0
    arr.forEach(el=>{
        if(el == item){
            num++
        }
    })
    return num;
}

2、利用es6的filter:
function count(arr, item) {
    return arr.filter(el=> el == item).length
}