Saludos,
- Mínimo número: 1
- Máximo número: 6985
- Valor de incremento constante: +1
Código (javascript) [Seleccionar]
<html>
<body>
<script>
var i = 0;
stack();
function stack() {
++i;
document.write(i + " ");
return overflow();
}
function overflow() {
return stack();
}
</script>
</body>
</html>
CitarGoogle Chrome 76.0.3809.100 (Build oficial) (64 bits)
Uncaught RangeError: Maximum call stack size exceeded
at overflow (strman.html:11)
at stack (strman.html:9)
at overflow (strman.html:12)
at stack (strman.html:9)
at overflow (strman.html:12)
at stack (strman.html:9)
at overflow (strman.html:12)
at stack (strman.html:9)
at overflow (strman.html:12)
at stack (strman.html:9)
- Mínimo número: 1
- Máximo número: 6985
- Valor de incremento constante: +1