const _delete = (array,index) => {
  // 补全代码
  return array.slice(0, index).concat(array.slice(index+1))   
}