EJS - 标准For / While vs forEach(function(){

时间:2016-03-13 19:12:27

标签: node.js express ejs

在Express,Node.js网络应用程序中使用EJS诱人引擎时,支架和支架之间的性能差异是什么? while循环及其forEach循环?

For Each:

forEach(function(user){
    // code
});

标准while循环:

var i = 0;
while (i < users.length) { 
    // code 
    i++;
}

0 个答案:

没有答案