3. 다음 코드를 setInterval() 함수와 같은 효과를 내는 setTimeout() 함수로 바꿔 보세요.
setInterval(() => { console.log('hello'); }, 1000);
정답 확인