学node时,看到一句代码有点不大理解?

https://img2.mukewang.com/5be134f10001184805970393.jpg

while后不加大括号,甚至加了一个分号,这种写法是什么意思?为什么不会报错呢?

源码:

function start() {  console.log("Request handler 'start' was called.");  function sleep(seconds) {      
var startTime=new Date().getTime();      while(new Date().getTime()<startTime+seconds);//这句
  }
  sleep(10000);  return 'hello Start';
}function upload() {  console.log("Request handler 'upload' was called.");  return 'Hello Upload';
}

exports.start = start;
exports.upload = upload;


繁花不似锦
浏览 422回答 1
1回答

ABOUTYOU

相当于while(new Date().getTime()<startTime+seconds){}吧;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript