2022年11月23日

箭头函数的this 指向

摘要: let p ={ num:1, add: function(a){ let f = v => { //箭头函数没有this,往上找一层的this 就是箭头函数的this // 箭头函数没有this 不能用call apply bind 进行绑定 console.log(this) return v 阅读全文

posted @ 2022-11-23 16:36 totau 阅读(19) 评论(0) 推荐(0) 编辑

导航