码迷,mamicode.com
首页 > Web开发 > 详细

js去重的es6做法和es5做法

时间:2018-04-10 11:44:35      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:each   typeof   res   cti   去重   type   reac   es6   ons   

1.es5做法
var array=[1,3,4,5,2,3,4,5,5,5];
var ob={};
var result=[];
array.forEach(function (a) {
var key=(typeof a)+a;
console.log(key)
if(!ob[key]){
ob[key]=true;
result.push(a)
}
console.log(result)
})
2.es6做法
let array = [1, 1, 1, 1, 2, 3, 4, 4, 5, 3];
let newarray = Array.from(new Set([1, 1, 1, 2, 3, 2, 4]));
console.log(newarray)













js去重的es6做法和es5做法

标签:each   typeof   res   cti   去重   type   reac   es6   ons   

原文地址:https://www.cnblogs.com/zhouyideboke/p/8777548.html

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