Blog
Projects
Stacks
Snippets
About
Get the day of week and month// Wednesday, May 10, 2023new Date().toLocaleDateString("en-US", { weekday: "long", year: "numeric", month: "long", day: "numeric",});
Get the day of week and month
// Wednesday, May 10, 2023new Date().toLocaleDateString("en-US", { weekday: "long", year: "numeric", month: "long", day: "numeric",});