반응형
getDay() 메서드는 지정된 날짜의 요일(0~6)을 반환합니다.
var d = new Date();
var n = d.getDay();
getDay() 메서드는 지정된 날짜의 요일(0~6)을 반환합니다.
참고: 일요일은 0, 월요일은 1 등입니다.
var d = new Date();
var weekday = new Array(7);
weekday[0] = "Sunday";
weekday[1] = "Monday";
weekday[2] = "Tuesday";
weekday[3] = "Wednesday";
weekday[4] = "Thursday";
weekday[5] = "Friday";
weekday[6] = "Saturday";
var n = weekday[d.getDay()];
https://www.w3schools.com/js/js_date_methods.asp
JavaScript Get Date Methods |
|
Method | Description |
getFullYear() | Get the year as a four digit number (yyyy) |
getMonth() | Get the month as a number (0-11) |
getDate() | Get the day as a number (1-31) |
getHours() | Get the hour (0-23) |
getMinutes() | Get the minute (0-59) |
getSeconds() | Get the second (0-59) |
getMilliseconds() | Get the millisecond (0-999) |
getTime() | Get the time (milliseconds since January 1, 1970) |
getDay() | Get the weekday as a number (0-6) |
Date.now() | Get the time. ECMAScript 5. |
반응형
'프로그래밍 > Script' 카테고리의 다른 글
[jQuery] modal, 전체화면, Mask (0) | 2022.01.11 |
---|---|
제이쿼리(jQuery)를 아직도 사용하나요? - 제이쿼리의 현재와 미래 (0) | 2021.11.16 |
[javascript] How to output numbers with leading zeros in JavaScript? ZeroPad (0) | 2021.10.14 |
[Node.js] moment 사용하기 (0) | 2021.10.13 |
[Node.js] split() function (0) | 2021.08.23 |