// interval id를 삭제
// setInterval 실행 -> 정지(id삭제) -> 실행
var id;
function interval() {
id = window.setInterval(function() {
removeInterval();
}, 1000);
}
function removeInterval() {
console.log(id);
clearInterval(id);
interval();
}
interval();


반응형
Posted by 힘없는염소