The typeof operator returns the type of a variable or an expression
var x = this; function cuteLuna(){ var $this = this; return $this; } document.getElementById("demo").innerHTML = new cuteLuna();
網頁放一個id為demo的元素,即可以看出效果
結果將渲染為:
[object Object]
但是如果是直接呼叫 cuteLuna(); 沒有加上new
結果將渲染為:
[object Window]