Posts by Euler Canguçu • 17 points
2 posts
-
-2
votes1
answer197
viewsQ: Draw using nested loop and increment
I’m studying Javascript for a book (from Casa do Código) and has a challenge involving nested loops, in which I have to draw this: for(var Linha=0;Linha<10;Linha=Linha+1){ for(var…
javascriptasked Euler Canguçu 17 -
2
votes1
answer39
viewsQ: Nested loops and incrementation
I’m studying Javascript by code house book and has a challenge involving nested loops, in which I have to draw this: * ** *** **** ***** ****** ******* Using this code: for(var…