返回恨打開一個新的問題延期到前一個:JavaScript的遞歸函數
function ctest() {
this.iteration = 0;
this.func1 = function() {
var result = func2.call(this, "haha");
alert(this.iteration + ":" + result);
}
var func2 = function(sWord) {
this.iteration++;
sWord = sWord + "lol";
if (this.iteration < 5) {
func2.call(this, sWord);
} else {
return sWord;
}
}
}
這將返回迭代= 5,但導致未定義?這怎麼可能?我明確地返回sWord。它應該返回「hahalollollolloll」,只是爲了雙重檢查,如果我提醒(sWord)就在返回sWord之前它正確顯示它。