Array.from() 从一个类似数组或可迭代对象中创建一个新的数组实例
语法:
Array.from(arrayLike[, mapFn[, thisArg]])
参数:
arryLike
想要转换成数组或者伪数组的可迭代对象
mapFn
(可选择参数)
如果指定了函数,新数组中的每个元素都会执行该回调函数
thisArg
(可选择参数)
可选参数,执行回调函数 mapFn
时 this
对象
返回值:
一个新的数组实例
描述:
- 伪数组对象(拥有一个
length
属性和若干索引属性的任意对象) - 可迭代对象(可以获取对象中的元素,如 Map和 Set 等)
Array.from()
方法有一个可选参数 mapFn
,让你可以在最后生成的数组上再执行一次 map
方法后再返回。也就是说Array.from(obj, mapFn, thisArg)
就相当于Array.from(obj).map(mapFn, thisArg),
除非创建的不是可用的中间数组。 这对一些数组的子类,
如 typed arrays 来说很重要, 因为中间数组的值在调用 map() 时需要是适当的类型。