728x90
반응형
if/else if 문으로 계절 출력하기
let date = new Date();
let month = date.getMonth() +1;
if(3 <= month && month <= 5){
alert("봄입니다.")
}else if(6 <= month && month <= 8){
alert("여름입니다.")
}else if(9 <= month && month <= 11){
alert("가을입니다.")
}else if(month == 12 || 1 <= month <= 2){
alert("겨울입니다.")
&& : 앞 뒤 조건이 모두 충족해야 OK
|| : 앞 뒤 조건 중 하나만 충족해도 OK
마지막 '겨울입니다' 는 나머지 부분이기 때문에 아래처럼 else로 대체해도 무관하다.
if(3 <= month && month <= 5){
alert("봄입니다.")
}else if(6 <= month && month <= 8){
alert("여름입니다.")
}else if(9 <= month && month <= 11){
alert("가을입니다.")
}else{
alert("겨울입니다.")
}
728x90
반응형
'HTML/CSS/JS' 카테고리의 다른 글
[JS] 현재 시간 출력, if문 오전 오후 구분하기 (date(),getMonth(),getHours(),if,else) (0) | 2022.10.18 |
---|---|
[HTML5] 14. 글자 생략 (ellipsis) (0) | 2022.10.18 |
[HTML5] 13. 중앙 정렬 레이아웃 (margin,width) (0) | 2022.10.18 |
[HTML5] 12. 수평 정렬 레이아웃 (overflow, hidden,float) (0) | 2022.10.18 |
[HTML5] 10. 배경/ 글자 속성 (background,font-family,text-decoration 등) (0) | 2022.10.17 |