が前のものに拡張のための新しい質問を開くために嫌い:再帰関数の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を返します。返すsWordの直前に警告(sWord)していれば、「hahalollollollollol」と返されたはずです。