JS使用new建立對象與不使用new建立對象的區別

   本文將探討一下使用new建立對象與不使用new建立對象的區別,一下面這段代碼爲例:     javascript function Person(name){ this.name = name; console.log(this); return {name:name};//返回對象 } Person.prototype.name = "Alice"; var person1 = ne
相關文章
相關標籤/搜索