Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変数 'i' が 'i' が特定の値になるという条件に一致するまで、ループを中断する方法。休憩の後、1 分間待ってから、同じループを再度実行します。
これから始めます:
var timer = setInterval(function () { doTask() }, 60000); function doTask() { while (condition) { } }