function unique(arr){ // 遍历arr,根据对象的属性categoryCode去重 var hash = {}; arr = arr.reduce(function(item, next) { hash[next.categoryCode] ? ‘‘ : hash[next.categoryCode] = true && item.push(next); return item }, []) console.log(arr); }
标签:fun push [] class amp var body console 去重
function unique(arr){ // 遍历arr,根据对象的属性categoryCode去重 var hash = {}; arr = arr.reduce(function(item, next) { hash[next.categoryCode] ? ‘‘ : hash[next.categoryCode] = true && item.push(next); return item }, []) console.log(arr); }
标签:fun push [] class amp var body console 去重
原文地址:https://www.cnblogs.com/JennyGao/p/8241826.html