将数组中某个对象提到第一位
Posted shez
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将数组中某个对象提到第一位相关的知识,希望对你有一定的参考价值。
将type=-1的对象提到第一位:
let orglist = [//原数组
{name:a,type:0},
{name:b,type:1},
{name:c,type:-1},
]
orglist.forEach((item,idx)=>{
if(item.type == -1){
orglist.splice(idx,1)
orglist.splice(0,0,item)
}
})
console.log(orglist)得到
[//新数组
{name:c,type:-1},
{name:a,type:0},
{name:b,type:1},
]
以上是关于将数组中某个对象提到第一位的主要内容,如果未能解决你的问题,请参考以下文章