// program to stop the setInterval() method after five times
let count = 0;
// function creation
let interval = setInterval(function(){
// increasing the count by 1
count += 1;
// when count equals to 5, stop the function
if(count === 5){
clearInterval(interval);
}
// display the current time
let dateTime= new Date();
let time = dateTime.toLocaleTimeString();
console.log(time);
}, 2000);
// interval id initialization
var myIntervalID;
// setInterval execution
myIntervalID = setInterval(function() {
// your main code for interval execution (this is just an example code)
$("body").css("font-size", '75px').addClass("interval-deletion-signal");
// setInterval deletion
if($("body").hasClass("interval-deletion-signal")){
console.log('please make it stop the interval');
clearInterval(myIntervalID);
}
}, 1);
$timer = setInterval(command, 5000);
clearInterval($timer);
//if you find the answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)