issues
search
ArthurWangCN
/
notepad
reading notepad
0
stars
2
forks
source link
ES6概念
#28
Open
ArthurWangCN
opened
2 years ago
ArthurWangCN
commented
2 years ago
箭头函数
箭头函数比普通函数更加简洁
箭头函数没有自己的this
箭头函数继承来的this指向永远不会改变
call()、apply()、bind()等方法不能改变箭头函数中this的指向
箭头函数不能作为构造函数使用
箭头函数没有自己的arguments
箭头函数没有prototype
箭头函数不能用作Generator函数,不能使用yeild关键字
箭头函数