2022-03-24 在JS数组指定位置插入元素修改数组原型(Array prototype)实现数组在指定位置插入元素Array.prototype.insert = function (index, item) { this.splice(index, 0, item) };调用如下:var nums = ["one", "two", "four"] nums.insert(2, 'three') console.log(nums) // ["one", "two", "three", "four"]