지정한 조건이 참인 경우, 명령문(statement)을 실행합니다. 조건이 거짓인 경우 또 다른 명령문이 실행될 수 있습니다.
if (condition) { statement1 } else { statement2 } condition: 참, 거짓으로 평가되는 표현식 statement1: 조건이 참으로 평가될 경우 실행되는 명령문 statement2: 조건이 거짓일 경우 실행되는 명령문
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