Skip to content

什么是 this 指向?

定位:初级、中级前端职位

概率:★★★

相关链接:this 指向

一句话回答面试官:this 指向主要分为两种情况,一种是普通函数中的 this,另外一种是箭头函数中的 this。普通函数的 this 都是指向调用者,谁调用了该函数,this 就指向谁。而箭头函数中是没有 this 的,不管是谁调用,它的 this 始终指向上一层函数作用域中所在的对象。

更新时间: