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

# 중첩 if문

중첩 if문은 if문 안에 if문이 오는 구조입니다.

### 중첩 if문

> if(조건식1){\
> &#x20;   if(조건식2){\
> &#x20;       //실행문\
> &#x20;   }\
> }

```javascript
let useID = "jangar6621";
let usePW = "1234";

let id = prompt("아이디가 무엇입니까?");
let pw = prompt("비밀번호가 무엇입니까?");

if( useID == id) {
    if( usePW == pw ){
        document.write("반갑습니다.")
    }   else{
        document.write("비밀번호가 틀립니다.")
    }
} else{
    document.write("아이디를 다시 한 번 확인해 주세요!");
} 
```
