Posts by Genio17full • 21 points
1 post
-
2
votes2
answers286
viewsQ: How to increment from 0 to 10 inside a Javascript setInterval
setInterval(function() { var x = 0; x++; console.log(x);}, 1000); }
javascriptasked Genio17full 21
1 post
2
votes2
answers286
viewssetInterval(function() { var x = 0; x++; console.log(x);}, 1000); }