运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Console Object</h1> <h2>The time() Method</h2> <p>Test how long it takes to run a for-loop 100.000 times.</p> <p>Remember to open the console (Press F12) before you click "Run".</p> <script> console.time("test1"); for (let i = 0; i < 100000; i++) { // some code } console.timeEnd("test1"); </script> </body> </html>