摘要: 1.Array.from 可以拷贝数组,也可以通过扩展运算符来拷贝数组,他们的作用对等,例如: let arr = [1,2,3,4] let arr2 = Array.from(arr) let arr3 = arr; //arr2 is: [ 1, 2, 3, 4 ] console.log(' 阅读全文
posted @ 2017-10-17 14:23 anthonyliu 阅读(488) 评论(0) 推荐(0) 编辑