码迷,mamicode.com
首页 > 编程语言 > 详细

JS对以对象组成的数组去重

时间:2018-05-09 15:14:14      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:ret   return   ons   OLE   []   reduce   fun   功能   对象   

这是从https://segmentfault.com/q/1010000006954351参考的,达到了我要去重的功能,可是具体的原理,我其实没懂,有大神可以指教一下吗?
var hash = {};
//arr是要去重的对象数组 arr = arr.reduce(function(item, next) { hash[next.name] ? ‘‘ : hash[next.name] = true && item.push(next); return item }, []) console.log(arr);

  



JS对以对象组成的数组去重

标签:ret   return   ons   OLE   []   reduce   fun   功能   对象   

原文地址:https://www.cnblogs.com/wgl0126/p/9013356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!