var collectionRepeat = function(box, key){ var counter = {}; box.forEach(function(x) { counter[x] = (counter[x] || 0) + 1; }); ...
確定! 回上一頁