2020-4-21 前端達人
his是一個關鍵字,表示執(zhí)行當前函數(shù)的對象
function fn(){ console.log(this); //window console.log(typeof this); //object } fn();
- 嚴格模式下,this指向undefiend
"use strict"; function fn(){ console.log(this); //undefined } fn();
藍藍設計的小編 http://363858.cn