Difference between revisions of "DOM Calendar"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
The function toLocalDateString takes an ''options'' object. You can set: | The function toLocalDateString takes an ''options'' object. You can set: | ||
*weekday to <code>long</code> <code>short</code> <code>narrow</code> | *weekday to <code>long</code> <code>short</code> <code>narrow</code> | ||
*month to <code>long</code> <code>short</code> <code>narrow</code> | |||
*the first parameter can be a language such as "en", "fr", "de", "zh" | |||
<pre class=usr> | <pre class=usr> |
Revision as of 21:37, 9 January 2022
Display dates as specified
- For today's date show
- day of the week in English
- month in English
- day of the week in French
- month in French
The function toLocalDateString takes an options object. You can set:
- weekday to
long
short
narrow
- month to
long
short
narrow
- the first parameter can be a language such as "en", "fr", "de", "zh"
let today = new Date(); document.body.innerHTML = ` ${today.toLocaleDateString('en',{weekday:'long'})} <br> ${today.toLocaleDateString('en',{weekday:'short'})} <br> `;
let today = new Date(); document.body.innerHTML = ` ${today.toLocaleDateString('en',{weekday:'long'})} <br> ${today.toLocaleDateString('en',{month:'long'})} <br> ${today.toLocaleDateString('fr',{weekday:'long'})} <br> ${today.toLocaleDateString('fr',{month:'long'})} <br> `;