var your_array=[5,5,5,3,3,2,5];
var counts = {};
your_array.forEach(function(x) { counts[x] = (counts[x] || 0)+1; });
document.write(counts[5])

 

--------------

4

文章標籤
全站熱搜
創作者介紹
創作者 amychang2014 的頭像
amychang2014

工作需要筆記

amychang2014 發表在 痞客邦 留言(0) 人氣(2,585)