js-在数组中固定位置插值

1
2
3
4
5
6
7
// 原来的数组
var array = ["one", "two", "four"];
// splice(position, numberOfItemsToRemove, item)
// 拼接函数(索引位置, 要删除元素的数量, 元素)
array.splice(2, 0, "three");

array; // 现在数组是这个样子 ["one", "two", "three", "four"]