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