📜  如何在javascript代码示例中设置计时器

📅  最后修改于: 2022-03-11 15:01:06.606000             🧑  作者: Mango

代码示例5
// this example takes 2 seconds to run
const start = Date.now();

// After a certain amount of time, run this to see how much time passed.
const milliseconds = Date.now() - start;

console.log('Seconds passed = ' + millis / 1000);
// Seconds passed = *Time passed*