js学习日记-new Object和Object.create到底干了啥
function Car () { this.color = "red"; } Car.prototype.sayHi=function(){ console.log('你好') } ...
function Car () { this.color = "red"; } Car.prototype.sayHi=function(){ console.log('你好') } ...
一、对象字面量语法 var person={ name:'小王', age:18, _pri:233 } 成员名称的单引号不是必须的 最后一个成员结尾 ...