new Object和Object.create创建新对象时到底干了啥
new Object和Object.create到底干了啥function Car () { this.color = "red";}Car.prototype.sayHi=function(){ console.log('你好')}<br data-filtered="filtered">var car =new Car();var car2 = Object...