Posts by Rafael Schueng • 1 point
1 post
-
0
votes3
answers201
viewsA: What’s wrong with my script? - setTimeOut
You have to pass a function and to setInterval or setTimeout. Ex: setInterval(function(){ /*Minha declaração*/ },1000) ou setInterval(() => {/* Minha declaração */},1000)…
javascriptanswered Rafael Schueng 1