condition
-
[javascript] 25. 조건문(conditions) - if, else - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:17
JavaScript If...Else Statements 조건문은 다른 조건에 따른 다른 행동을 수행하는데 사용합니다. 1. Conditional Statements 주로 코드를 작성할 때, 다른 결정에 따른 다른 행동을 수행하려 합니다. 그때, 조건문을 코드에 기입합니다. 2. The if Statement if 문을 써서 조건이 참 인 경우, 괄호 안의 실행할 자바스크립트 코드를 명시합니다. 문법: if (condition) { block of code to be executed if the condition is true } 예제: 123456789101112131415161718192021 Display "Good day", only if the time is less than 20:00: Try..