标签: javascript
我使用函数
AAA = function ( x) { this.x = x || 0; };
然后我使用
var a = new AAA();
如果我正在使用a.prototype,我会得到" undefined"。我只能使用AAA.prototype来访问prototype属性,我想知道为什么?