码迷,mamicode.com
首页 > 其他好文 > 详细

es6 箭头函数

时间:2018-11-09 19:20:03      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:构造函数   log   turn   console   改变   function   bin   margin   调用   

1.箭头函数没有 this,所以需要通过查找作用域链来确定 this 的值。箭头函数没有this,不能使用call(), apply(), bind()改变this;

 

2.没有arguments,访问外围函数的arguments

function constant () {

  return () => arguments[0]

}

let result = constant(1)

console.log(result)

3.不能通过new关键字调用,没有new.target,没有原型,不能作为构造函数。

 

es6 箭头函数

标签:构造函数   log   turn   console   改变   function   bin   margin   调用   

原文地址:https://www.cnblogs.com/tangyunluck/p/9936528.html

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