Posts by Luiz Henrique Soares • 11 points
1 post
-
1
votes2
answers44
viewsA: I’m not being able to print javascript
In your "go" you declared the counter as "x" but you’re using it as if it were "i". The correct would be to change the "for" of: for(var x=1; x<=10; x++) To: for(var i=1; i<=10; i++) The whole…