✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué error tiene la siguiente función que usa un bucle while?
function cuentaAtras(num) { let i = num; while (i > 0) { document.write(i);
i--; }document.write("¡Cuenta!");}cuentaAtras(7);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!