funciones Javascript – setInterval() clearInterval() setTimeout()
ESTE POST HA SIDO ACTUALIZADO Y TRADUCIDO, CONSULTARLO EN:
funciones Javascript – setInterval() clearInterval() setTimeout() – Parte 2
setInterval()
This method is used to repeatedly execute a function at a set interval. The format for this method is:
window.setInterval(“functionName()”,time);
The first parameter (“functionName()”) is the name of the function that you want to [...]