美文网首页
01_11.箭头函数的this

01_11.箭头函数的this

作者: Robyn_Luo | 来源:发表于2017-11-13 11:23 被阅读0次
     <script>
        // 箭头函数自己没有this,它的this来自于它的上级作用域
    
        // let fn = () => console.log(this);
        // fn();      // 上级this,window
     
        // let obj = { fn: fn };
        // obj.fn();  // 还是上级this,window
    
        // new fn();  // 报错,箭头函数不能new
    
        let fn2 = () => console.log(arguments);  // 报错,箭头函数不能使用arguments,请用...代替
        fn2(1, 2, 3);
        </script>
    

    相关文章

      网友评论

          本文标题:01_11.箭头函数的this

          本文链接:https://www.haomeiwen.com/subject/geaamxtx.html