# 반복문 - 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일 때만 종료시키고 다시 반복문 조건문 시작할 때로 돌아가 실행된다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://heunnajo.gitbook.io/javascript/continue.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
