我最近发现了这个代码片段:
function start() {
function sleep(milliSeconds) {
var startTime = new Date().getTime();
while (new Date().getTime() < startTime + milliSeconds);
}
sleep(10000);
return "Hello Start";
}
我们以这种方式定义函数而不是使用“传统”方法有什么优势?
提前致谢。