在数组 arr 的 index 处添加元素 item。不要直接修改数组 arr,结果返回新的数组
添加元素
https://www.nowcoder.com/practice/941bcfa5b87940869fda681c1597fd3a?tpId=6&tqId=10958&tPage=1&rp=1&ru=/ta/js-assessment&qru=/ta/js-assessment/question-ranking
function insert(arr, item, index) {
var temp = arr.slice(0); temp.splice(index,0,item); return temp; /* var temp = [],res = []; temp.push(arr.slice(0,index)); res.push(arr.slice(index)); temp.push(item); return temp.concat(res); */
}