function objConstructor(){ this.name = "object"; }
3. 如今來看constructor的定義: The constructor property is a reference to the function that created an object. 怎麼建立一個對象?new一個。那你用了建立對象的那個function也就成了constructor。
再來想一想爲何例子一的constructor是Object對象呢?由於 {name:"object"} 等同於 new Object({name:"object"})。