1 2 3 4 5 6 7
const id = setInterval(() => { console.log("test"); }, 200); setTimeout(() => { clearInterval(id); }, 500);