var a = setInterval(function(){console.log("hi")},3000);
함수 실행 후 3초마다 콘솔에 hi가 출력됩니다. 첫 출력은 함수 실행 후 3초 뒤 입니다.
clearInterval(a);
3초마다 출력하던 것을 멈춥니다.