//在中间添加元素 //在数组 arr 的 index 处添加元素 item。不要直接修改数组 arr,结果返回新的数组 function insert(arr, item, index) { //添加新数组 var newArr = [] //定义一个变量i作为索引 for(...