I only want to run the function 1 time.
timerA = setInterval(function()
         {
            //codes..
            clearInterval(timerA);
         }, 2000);
I want to call the function inside setInterval only 1 time. How can I do it with setInterval and clearInterval?
Or is there another technique to do it?
Use the setTimeout method if you only want it to run once.
Example:
 setTimeout(function() {
      // Do something after 5 seconds
 }, 5000);
If you only want to run the code once, I would recommend using setTimeout instead:
setTimeout(function(){
   //code
}, 2000);
'setInterval' vs 'setTimeout'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With