Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. let timerId = setTimeout(function tick() {
  2. console.log("tick");
  3. timerId = setTimeout(tick, 2000);
  4. }, 2000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement