分配后,`s`变空

时间:2015-11-16 11:23:24

标签: javascript typescript

对于以下代码,s在分配后变为空。我将s视为匿名函数中使用的全局变量。但好像现在好像。它是如何工作的?

 var s = "";

    Utility.readAllFiles('testth/expression', function (err, results) {
        if (err) throw err;
        console.log(results);
        s += results.join(",");//s is non-empty here
    });



    res.end(s + "\n\n\n");//s is empty here

0 个答案:

没有答案