조건문

Jmnote (토론 | 기여)님의 2018년 12월 10일 (월) 22:21 판 (→‎개요)

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 }}