var test= [
{
applytime: 1637993230077,
},
{
applytime: 1637993230077,
},
{
applytime: 1637993230078,
},
{
applytime: 1637993230078,
},
]
function checkSameData(tableData2){
let cache = {}; //存储的是键是applytime 的值,值是applytime 在indeces中数组的下标
let indices = []; //数组中每一个值是一个数组,数组中的每一个元素是原数组中相同applytime的下标
tableData2.map((item,index)=>{
let applytime = item.applytime;
let _index = cache[applytime];
if(_index!==undefined){
indices[_index].push(tableData2[index])
}else{
cache[applytime] = indices.length
indices.push([ tableData2[index]])
}
})
console.log(indices)
}
this.checkSameData(test)
js找出数组中相同的元素放在一起
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 找出两数组中不相同的元素的集合 平时需求中经常遇到,找出两数组中不相同的部分。有时候会要找出被删除的元素。 ...
- <!DOCTYPE html> Document //做比较的两个数组var array1 = [...
- 题目三: 2.23如果一个数组A[1...n]中超过半数的元素都相同时,该数组被称为含有一个主元素。给定一个数组,...