[Intermediate] 조건문 If/Else
1. 조건문
1) if문
지정한 조건이 참인 경우, 명령문(statement)을 실행합니다. 조건이 거짓인 경우 또 다른 명령문이 실행될 수 있습니다.
if (condition) { statement1 } else { statement2 } condition: 참, 거짓으로 평가되는 표현식 statement1: 조건이 참으로 평가될 경우 실행되는 명령문 statement2: 조건이 거짓일 경우 실행되는 명령문
2) 다중의 if..else문
if (condition1) { statement1 } else if (condition2) { statement2 } else if (condition3) { statement3 } else { statement4 }
출처: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/if...else
Author And Source
이 문제에 관하여([Intermediate] 조건문 If/Else), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hanei100/Intermediate-조건문저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)