Skip to content

Latest commit

 

History

History
executable file
·
10 lines (7 loc) · 81 Bytes

File metadata and controls

executable file
·
10 lines (7 loc) · 81 Bytes
let i = 0;
while (i < 3) {
  alert( `número ${i}!` );
  i++;
}