手册地址:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array
new Array() 新建数组
Array.form() 把一个类数组转换成真正的浅拷贝数组
语法:Array.from(arrayLike[, mapFn[, thisArg]])
arrayLike
想要转换成数组的伪数组对象或可迭代对象。
mapFn (可选参数)
如果指定了该参数,新数组中的每个元素会执行该回调函数。
thisArg (可选参数)
可选参数,执行回调函数 mapFn时this 对象。
Array.of() 将参数转成一个数组
语法:Array.of(element0[,element1[, ...[,elementN]]])
elementN
任意个参数,将按顺序成为返回数组中的元素。
isArray() 检测是否为数组