{ console.time("loop"); for (var i = 0; i < 1000000; i += 1){ // Do nothing } console.timeEnd("loop"); } 在网络上看到 ( https://www.toptal.com/nodejs/interview-questions ) 说上面这段code node的执行速度会比chrome浏览器快 虽然都是用v8引擎 原因是 因为i是global,会被绑在window object上 然后会 repeatedly resolving the property i within the heavily populated window namespace in each iteration of the for loop. 上面这句英文理解不能 可以请大大开释一下吗? 感谢