码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript数组操作

时间:2018-02-04 21:19:05      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:span   post   log   添加   body   color   rip   set   div   

1.生成数组:

1.1 通过Set中转,生成新的数组

// 将数据添加到Set
const s = new Set();
[2, 3, 5, 4, 5, 2, 2].forEach(x => s.add(x));

// 将Set转换成数组
const array = Array.from(s);

 

JavaScript数组操作

标签:span   post   log   添加   body   color   rip   set   div   

原文地址:https://www.cnblogs.com/hwubin5/p/8413904.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!