let list = [{ name:'小明', tel:'13088888888' },{ name:'小李', tel:'13088888899' },{ name:'小金', tel:'13088888877' },{ name:'小明', tel:'13088888888' },{ name:'小天', tel:'13088888855' }]
先做排序
//中文排序 function sortChinese(arr, dataLeven) { function getValue (option) { if (!dataLeven) return option var data = option dataLeven.split('.').filter(function (item) { data = data[item] }) return data + '' } arr.sort(function (item1, item2) { return getValue(item1).localeCompare(getValue(item2), 'zh-CN'); }) } sortChinese(list, 'name')
获取重复数据
let _res = []; for(let i = 0; i < list.length;) { let count = 0; for(let j = i; j < list.length; j++) { if(list[i].name == list[j].name) { count++; } } let obj = { name:list[i].name, num:count } _res.push(obj) i += count; } console.log('_res',_res)
标签: 重复数据
上面是“js找出数组中重复的元素和重复次数”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2118.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!