날짜 데이터 JavaScript: D-day : 93일
Javascript, doit, 교재 따라하기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 var today = new Date(); //왠지 모르지만 밑에 애들 변수 지정 안 했는데 작동됨. 해도 잘 됨. nowMonth = today.getMonth(); // nowMonth 에 today 날짜의 월을 입력(0부터11: 1월은 0, 12월은 11) nowDate = today.getDate(); // nowDate에 일을 입력 nowDay = today.getDay(); // 0(일요일) 부터 6(토요일) 까지 요일 중 오늘 요일을 담음. document.write..
HTML.CSS.JavaScript
2022. 1. 24. 00:12