那这个呢:
// 1. reset the array while keeping its referencearr1.length = 0;// 2. fill the first array with items from the second[].push.apply(arr1, arr2);

那这个呢:
// 1. reset the array while keeping its referencearr1.length = 0;// 2. fill the first array with items from the second[].push.apply(arr1, arr2);