> For the complete documentation index, see [llms.txt](https://heunnajo.gitbook.io/javascript/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://heunnajo.gitbook.io/javascript/continue.md).

# 반복문 - continue

```javascript
<script type="text/javascript">
    for(var i = 0; i < 10; i++) {
        if(i == 5) {
            continue;
        }
        document.write('coding everybody' + i + '<br />');
</script>
```

5는 출력되지 않는다.i가 5일 때만 종료시키고 다시 반복문 조건문 시작할 때로 돌아가 실행된다.
