摘要: set 它类似于数组,但是成员的值都是唯一的,没有重复的值。 方法:add(),has(),delete(),clear() 转为对像: const items = new Set([1, 2, 3, 4, 5]);const array = Array.from(items); 去除数组重复成员: 阅读全文
posted @ 2017-12-08 17:24 fm060 阅读(164) 评论(0) 推荐(0)
摘要: { arr.map(function(val){ return {val} }) } 阅读全文
posted @ 2017-12-08 16:34 fm060 阅读(3752) 评论(1) 推荐(0)
摘要: 数据的过滤处理 阅读全文
posted @ 2017-12-08 15:49 fm060 阅读(104) 评论(0) 推荐(0)
摘要: 等待f1加载完才执行下一行 阅读全文
posted @ 2017-12-08 15:31 fm060 阅读(106) 评论(0) 推荐(0)
摘要: const arrt=[1,2,3,4]const arrt1=[6,7,8,9]arrt.push(...arrt1) 输入 [1,2,3,4,6,7,8,9] es5写法:Array.prototype.push.apply(arr1, arr2); 阅读全文
posted @ 2017-12-08 15:09 fm060 阅读(111) 评论(0) 推荐(0)