stop start reiniciar interval español detener como and javascript setinterval

start - setinterval javascript break



Cómo salir de setInterval (1)

Necesito salir de un intervalo de ejecución si las condiciones son correctas:

var refreshId = setInterval(function() { var properID = CheckReload(); if (properID > 0) { <--- exit from the loop---> } }, 10000);


Utilice clearInterval :

var refreshId = setInterval(function() { var properID = CheckReload(); if (properID > 0) { clearInterval(refreshId); } }, 10000);