요일로 바로 바꿔주는 함수가 자바스크립트에서 제공된다.

 

var myDate = new Date();

myDate.toLocaleDateString(undefined, {weekday: 'long'})

 

long 자리에 short도 넣을 수 있음

 

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString

 

Date.prototype.toLocaleString()

The toLocaleString() method returns a string with a language sensitive representation of this date.

developer.mozilla.org

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString

 

Date.prototype.toLocaleTimeString()

The toLocaleTimeString() method returns a string with a language sensitive representation of the time portion of this date. The new locales and options arguments let applications specify the language whose formatting conventions should be used and customiz

developer.mozilla.org

 

'배운 내용 정리 > JAVASCRIPT' 카테고리의 다른 글

toLocaleDateString - 요일 구하기  (0) 2020.11.30
arguments  (0) 2020.07.27
변수, typeof, 비교연산자, 형변환  (0) 2020.07.15
참고사이트  (0) 2020.07.15
반복문(for of, for in)  (0) 2020.07.14

+ Recent posts