+ 1
My professor asks us to make this using for, while and do while loops in Javascript. I need help
* ** *** **** *****
3 Respuestas
+ 2
Here you are! There are some explanations in the code :)
https://code.sololearn.com/WbiK766iqQLa/?ref=app
+ 2
var res= " "
for(var i=0; i< 10; i++){
res += "#"
console.log(res)
}
+ 1
Thanks!