我目前正在使用js-component,我想知道是否有更好的方法在javascript中连接函数然后返回this
。我有一个示例代码在这里工作,这就是我如何解决问题。
function hi(){
console.log('hi');
return this;
}
function bye(){
console.log('bye');
return this;
}
function Test(){};
Test.prototype.hi = hi;
Test.prototype.bye = bye;
var x = new Test();
x
.hi() //hi
.bye(); //bye