ES6笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6笔记相关的知识,希望对你有一定的参考价值。
1. let
拥有块级作用域
*es6中不在有变量提升
2. class
通过extends进行继承
*super指父类
3. arrow function
并没有this, 直接继承外面this
4. template string
``
变量由$(x)表示
5. default
function aa(type = ‘cat‘ ) {}
6. reset arguments
function aa(...types) {}
...types = arguments
以上是关于ES6笔记的主要内容,如果未能解决你的问题,请参考以下文章