标签: javascript
我想在我的代码中调用Constructor A原型:
var A = function () { // ? call to A.prototype.a }; A.prototype.a = function () { // print };
答案 0 :(得分:1)
var A = function () { // ? call to A.prototype.a this.a(); };