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"})。