Posts by Mauricio Junior • 3 points
1 post
-
0
votes2
answers39
viewsQ: Skipping line before time
<script> var i = 0; while(i < 100){ n = 1; resultado = n + i; if(0 === (i%10)){ document.write(n + '-' + resultado + '<br>'); }else{ document.write(n + '-' + resultado + ' '); } i++;…