노션으로 작성해서 복사. Java Script(조건문) 조건문 조건문의 구조는 다음과 같다. if (true) { console.log('This message will print!'); } // Prints: This message will print! 괄호 안에는 참, 거짓이 결과인 조건이 들어가고(그 자체가 들어가도 됨) 참이 들어가면 중괄호 안의 내용을 실행 시키고, 거짓이라면 실행하지 않는다. else 문 예시 if (false) { console.log('The code in this block will not run.'); } else { console.log('But the code in this block will!'); } // Prints: But the code in this blo..