Window setInterval() Method

Last updated on April 21st, 2020 at 02:46 am

setInterval(function(){ alert("GEMCODE"); }, 5000);

Alert “GEMCODE” every 5 seconds (5000 milliseconds):

Share Post