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

一些神奇的JS功效

时间:2017-10-16 02:09:47      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:var   settime   reac   class   blog   ons   color   log   time   

1: 沉睡排序

1 var numbers=[1,2,3,4,5,5,99,4,20,11,200];
2 numbers.forEach((num)=>{
3     setTimeout(()=>{
4         console.log(num)
5     },num)
6 })

 

2: 快速去重  (ES6)

1 var arr = Array.from(new Set([1,2,3,4,4,3,5,6,7,8,8]));

 

一些神奇的JS功效

标签:var   settime   reac   class   blog   ons   color   log   time   

原文地址:http://www.cnblogs.com/shiweida/p/7675205.html

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