pidjan
-
Автор темы
- #1
JavaScript:
function Sleep(milliseconds) {
const date = Date.now();
let currentDate = null;
do {
currentDate = Date.now();
} while (currentDate - date < milliseconds);
}
function time_log(stop, sec) {
var timer = sec;
for (;; timer--) {
if(timer < stop) break;
console.log(timer.toString().replace("-", ""));
Sleep(1000);
}
}
time_log(-10, 0);
//если stop меньше ноля, то таймер идет от sec до stop, иначе от stop до sec.