2020-4-21 前端达人
his是一个关键字,表示执行当前函数的对象
function fn(){
console.log(this); //window
console.log(typeof this); //object
}
fn();
- 严格模式下,this指向undefiend
"use strict";
function fn(){
console.log(this); //undefined
}
fn();