matriz bucle js code example
Example: matriz bucle js
for (let i = 0; i < 99; i += 1) { if (i > 5) { break; } console.log(i)} // Output: 0 1 2 3 4 5
for (let i = 0; i < 99; i += 1) { if (i > 5) { break; } console.log(i)} // Output: 0 1 2 3 4 5