Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
var i = 0; while (true) { document.writeln(i); i++; }
нужно написать бесконечный скрипт
while (true) { document.writeln(i); i++; setTimeout(function() {}, 1000); }
wihle (true) { setTimeout(function() { document.writeln(i); i++; }, 1000); }
var i = 0; setInterval(function() { document.writeln(i++); }, 666);
function xxx(i) { document.writeln(i); setTimeout(xxx, 666, i + 1); } xxx(0);