Why do not you show me anything?
window.addEventListener("load", function() {
var matriz = new Array(50);
matriz.forEach(function(i) {
document.getElementById("forEach").innerHTML += i + '\t';
});
});
body {
background-color: #E8A623;
}
h1,h2,h3,h4,h5,h6 {
color: white;
}
<!--<!DOCTYPE html>--->
<html>
<head>
<title>Bucles</title>
</head>
<body>
<h1 style="text-align: center;">Bucle for simple | 1 - 10 |</h1>
<hr></hr>
<i style="text-align: center;"><i id="forEach"></i></i>
</body>
</html>