构造函数如何调用,拥有原型

时间:2015-10-20 10:31:12

标签: javascript

我想在我的代码中调用Constructor A原型:

var A = function () {
 // ? call to A.prototype.a  
};

A.prototype.a = function () {
 // print
};

1 个答案:

答案 0 :(得分:1)

var A = function () {
 // ? call to A.prototype.a
 this.a();
};