4.9 this 關鍵字
範例1
//"use strict";
console.log(this); // window"use strict";
console.log(this); // window範例2
//"use strict";
function test(){
console.log(this); // window
}
test();"use strict";
function test(){
console.log(this); // undefined
}
test();範例3
Last updated