现在有个数组是[7, 8, 10, 2, 3, 6, 11, 13, 15, 17,]
,需要重新排列生成个新数组,顺序变为后三个+前三个+后续所有+前面剩余所有,如果我让6
变为开头的话就是[6, 11, 13, 15,10, 2, 3,17,7, 8,]
,
// 获取当前index后的内容
let nowList = this.NumberList.slice(nowIndex)
let prevList: number[] = []
let startList: number[] = []
// 如果当前index在第三位后
if (nowIndex - 3 > 0) {
// 获取前三
prevList = this.NumberList.slice(nowIndex - 3, nowIndex)
// 获取前方剩余
startList = this.NumberList.slice(0, nowIndex - 3)
} else {
// 获取前面的数
prevList = this.NumberList.slice(0, nowIndex)
}
// 插入
nowList.splice(3, 0, ...prevList)
nowList.push(...startList)
return nowList
}
想问有什么比较简单的写法吗
https://developer.mozilla.org...