Last updated 3 years ago
在 javascript/practice 資料夾下,建立 this.html 檔案,以便練習。
javascript/practice
this.html
//"use strict"; console.log(this); // window
"use strict"; console.log(this); // window
//"use strict"; function test(){ console.log(this); // window } test();
"use strict"; function test(){ console.log(this); // undefined } test();
//"use strict"; var myobj = { data: "my_str", test: function(){ console.log(this); // myobj } }; myobj.test();
"use strict"; var myobj = { data: "my_str", test: function(){ console.log(this); // myobj } }; myobj.test();