JS数组中两个元素交换位置

时间:2024-11-13 07:32:17

 假设将一个数组的首尾互换一下,利用数组的 splice 替换元素方法很轻松就办到。

var arr = [
    {
        id: 0,
        name: 'Rose'
    }, {
        id: 1,
        name: 'Robin'
    }, {
        id: 2,
        name: 'Tom'
    }
]

var sourceIndex = 0
var targetIndex =  - 1

// 一行代码两边办事
// splice 将目标元素替换并将原结果扔回来赋值给它
arr[sourceIndex] = (targetIndex, 1, arr[sourceIndex])[0]

(arr)

 

相关文章