Node.js實戰6:定時器,使用timer延遲執行。

setTimeout 在nodejs中,通過setTimeout函數可以達到延遲執行的效果,這個函數也常被稱爲定時器。 一個簡單的例子: console.log( (new Date()).getSeconds() ); setTimeout(function(){ console.log( (new Date()).getSeconds() ); console.log("hello wor
相關文章
相關標籤/搜索