-
使用箭头声明函数
1、简便了书写
2、this的指向有所改变
查看全部 -
块作用域之间不相互干扰
查看全部 -
let 声明的闭包有块作用域的作用
查看全部 -
es6
查看全部 -
es5 中通过立即执行函数来创建块级作用域
es6中可直接使用花括号来创建块级作用域
查看全部 -
ES6新特性:
常量
作用域
箭头函数
默认参数
对象代理
查看全部 -
const查看全部
-
{
let Person={
name:'zd',
sex:'male',
age:15
};
let person =new Proxy(Person,{//Proxy代理
get(target,key){
return target[key]
},
set(target,key,value){
if(key!=='sex')
target[key]=value;
},
});
console.tabel({
name:person.name,
sex:person.sex,
age:person.age});
tary{person.sex='feaml';
}catch(e){
console.log(e)}finally{
}
}
查看全部 -
查看全部
-
git clone https://github.com/cucygh/es6-webpack.git
cd es6-webpack && npm install查看全部 -
学习途径
查看全部 -
es6弥补了es3、es5功能上的不足,比如,常量、作用域
查看全部 -
this的指向就是该函数被调用的对象
查看全部 -
箭头函数
( ) => { }
( )中只有一个参数,则( )可以省略
{ }中的表达式就是函数的返回值时{ }也可以以省略
查看全部 -
箭头函数
() => { }
( )中是参数,如果该函数只有一个参数( )可以省略
如果
查看全部
举报