思路:使用forEach方法遍历数组,当当前元素等于给定元素则将数量加一。
function count(arr, item) { let count=0 arr.forEach(x=>{ if(x==item) count++ }) return count }
总结:注意变量作用域范围。