标签: javascript jsdoc
我现在正在尝试为我的方法修复JSDoc。而且我对应该为此写些什么感到困惑,因为该方法不返回任何内容,而是根据if / else代码调用另一个方法。
methodOne () { if (something) { this.runMethod() } else { this.runAnotherMethod() } }