我有一个像下面这样的构造函数
var Example = (function () {
function Example(opt) {
this.opt = opt;
return{
function(){ console.log(this.check()); } // Here is an Error
}
}
Example.prototype.check = function () {
console.infor('123');
};
return Example;
}) ();
var ex = new Example({ a:1 });
我知道我做错了,但无法弄清楚如何做到这一点。我想在对象返回中使用原型方法。请帮助我。