function array_count_values(arr) { const obj ={} arr.forEach(item => { if (!obj[item]) { obj[item] = arr.filter(par => par == item).length } ...
確定! 回上一頁