조건문

Jmnote bot (토론 | 기여)님의 2022년 7월 11일 (월) 15:51 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))

1 개요

conditional statement, conditional expression, conditional construct, conditional
조건문, IF문
  • 조건이 참인지 거짓인지에 따라 달라지는 계산이나 상황을 프로그래밍 구조

 

2 예시

<script>
var a = 2;
var b = 5;
if( a == b ) {
    document.write('a와 b는 같다.');
}
else {
    document.write('a와 b는 같지 않다.');
}
</script>

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}