Array.from()
语法
Array.from(arrayLike[, mapFn[, thisArg]])
参数
arrayLike:想要转换成数组的伪数组对象或可迭代对象。 mapFn (可选参数):如果指定了该参数,新数组中的每个元素会执行该回调函数。 thisArg (可选参数):可选参数,执行回调函数 mapFn 时 this 对象。
返回值
一个新的数组实例
Array.from(arrayLike[, mapFn[, thisArg]])
arrayLike:想要转换成数组的伪数组对象或可迭代对象。 mapFn (可选参数):如果指定了该参数,新数组中的每个元素会执行该回调函数。 thisArg (可选参数):可选参数,执行回调函数 mapFn 时 this 对象。
一个新的数组实例