배운 내용 정리/JAVASCRIPT
날짜 변환 함수
만타가올이
2020. 7. 23. 17:54
요일로 바로 바꿔주는 함수가 자바스크립트에서 제공된다.
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
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