prototype只有function才有的属性。
var a = function() { this.age = 12; this.name = "haha"; }; a.prototype = { address: "shanghai", price:13 }; // prototype对象下的属性只有一个实例
prototype只有function才有的属性。
var a = function() { this.age = 12; this.name = "haha"; }; a.prototype = { address: "shanghai", price:13 }; // prototype对象下的属性只有一个实例