728x90
300x250
오늘 날짜를 2100년 1월 1일과 비교하기
let text = "";
const today = new Date();
const someday = new Date();
someday.setFullYear(2100, 0, 14);
if (someday > today) {
text = "Today is before January 14, 2100.";
} else {
text = "Today is after January 14, 2100.";
}//Today is before January 14, 2100.
728x90
반응형
'javaScript > JS Tutorial' 카테고리의 다른 글
[javaScript] 숫자를 정수로 반올림 Math.round, Math.ceil, Math.floor, Math.trunc (0) | 2022.11.25 |
---|---|
[javaScript] Math 객체 (0) | 2022.11.24 |
[javaScript]날짜 설정 하기 (0) | 2022.11.22 |
[javaScript] 요일 한글로 (0) | 2022.11.20 |
자바스크립트 월 가져오기 (0) | 2022.11.19 |
댓글