0
What is the difference between SetInterval and setTimeout in javascript ?
I need more explanation on both
2 Antworten
+ 8
setInterval triggers the callback continuously (multiple times) after a set interval, while setTimeout only triggers once.
0
Thanks