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