27
¿Cómo agrego un retraso en un bucle de JavaScript?
Me gustaría agregar un retraso / suspensión dentro de un whilebucle: Lo intenté así: alert('hi'); for(var start = 1; start < 10; start++) { setTimeout(function () { alert('hello'); }, 3000); } Solo el primer escenario es verdadero: después de mostrar alert('hi'), esperará 3 segundos y luego alert('hello')se mostrará, pero luego …
345
javascript
loops
sleep