денис77447327,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
(function foo(i, n, max) {
var t = setInterval(function() {
console.log(++i);
if (max == i) {
clearInterval(t);
return;
}
if (i % n === 0) {
clearInterval(t);
setTimeout(function() {
foo(i, n, max);
}, 30000);
}
}, 1000);
})(0, 25, 100);
</script>
</body>
</html>