JavaScript将类数组转换为数组的三种方法
// 类数组转换为数组
const list = [] // 假定为类数组
const arr1 = Array.from(list);
const arr2 = Array.prototype.splice.call(list);
const arr3 = [...list];
// 类数组转换为数组
const list = [] // 假定为类数组
const arr1 = Array.from(list);
const arr2 = Array.prototype.splice.call(list);
const arr3 = [...list];