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
Alive Angelfish