ネストされた関数を使用しています
Function mainfunction (callbackfun) {
//some code + function (score)
{
var score = scoreString;
alert(scoreString);
callbackFun(score);
}
} //--> I return this value to my calling function
mainfunction(function (anystring){
alert(anystring); //-> this would return me the value in callbackfun
});
私が欲しいのは、その値にアクセスすることanystring
です
var fetchvalue ;
mainfunction(function (anystring){
fetchvalue =anystring; //-> this would return me the value in callbackfun
});
正しい軌道に乗っている場合は、私を導いてください。