在不改变原来数组的情况下,拷贝出数组b,且满足b!=a。例如数组a为[1,2,3]
let b =a ;
let b = a.slice();
let b = a.splice(0,0)
let b = a.concat();