[JavaScript] 조건문
·
Programming Language/JavaScript
제어문 : 코드의 실행 흐름과 직접적인 관련이 있는 문장 if 조건문 조건에 따라서 코드를 실행하거나 실행하지 않을 때 사용하는 구문 > const date = new Date() undefined > date.getFullYear() 2023 > date.getMonth() + 1 9 > date.getDate() 3 > date.getHours() 21 > date.getMinutes() 37 > date.getSeconds() 2 Date() FullYear : 올해 (ex : 2023) Month : 월 (0~11) → 1월이 0 Date : 일 (1~31) → 1일이 1 Hours : 시간 (0~23) // 현재 시간 구분하는 코드 const date = new Date() const hours..