How to use setInterval function call in JavaScript?
Answers
Answered by
0
you can use as
setInterval(function name,time interval)
for example setInterval(F1,1000)
here F1 is the function name and 1000 is the time in milliseconds
here the function F1 Will be called after every 1000 millisecond or 1 second
Similar questions