ES6

Posted yundong333

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6相关的知识,希望对你有一定的参考价值。

箭头函数:

 1     <!--
 2         以前js的一些知识  不知道的还是很多的
 3     -->
 4     <script>
 5     const obj = 
 6         aaa() 
 7             setTimeout(function () 
 8                 setTimeout(function ()
 9                      console.log(this) //window
10                 )
11 
12                 setTimeout( () => 
13                     console.log(this) //window
14                 )
15             )
16 
17             setTimeout(() => 
18                 setTimeout(function ()
19                     console.log(this) //window
20                 )
21 
22                 setTimeout(() => 
23                     console.log(this) //obj
24                 )
25             )
26         
27         
28     
29     </script>

 

以上是关于ES6的主要内容,如果未能解决你的问题,请参考以下文章

webengineview支持es6吗

20分钟上手ES6,不会ES6好意思说自己会JS ?

什么是ES6?

ES6基础5--ES6新特性

es6的循环方法

es6解构赋值