@ w3schools의 설명
setInterval() | Calls a function or evaluates an expression at specified intervals (in milliseconds) |
setTimeout() | Calls a function or evaluates an expression after a specified number of milliseconds |
@ setInterval(code,millisec,lang)
Parameter | Description |
---|---|
code | Required. A reference to the function or the code to be executed |
millisec | Required. The intervals (in milliseconds) on how often to execute the code |
lang | Optional. JScript | VBScript | JavaScript |
- setInterval은 메서드 네임처럼 일정한 간격마다 함수를 실행시킴(set + Interval : 간격을 정함)
@ setTimeout(code,millisec,lang)
Parameter | Description |
---|---|
code | Required. A reference to the function or the code to be executed |
millisec | Required. The number of milliseconds to wait before executing the code |
lang | Optional. The scripting language: JScript | VBScript | JavaScript |
- setTimeout은 시간을 정새서 그 정해진 시간 후에 코드를 한번 실행시킴. 재귀적으로 함수내에서 자기자신을 호출하여 반복적으로 사용할 수 있다.
자주 헷갈리는 두녀석, 실상 메서드명만 생각해보면 답이 나와야 되는데 요새 두뇌에 메멘토가 와서 정리해봤다.