Readme

Get the day of week name

JavaScript's Date.prototype.getDay() returns a number that represents the day of the week, 0 for Sunday, 1 for Monday, etc. This function returns the name of the week, ie "Sunday", "Monday", etc.

The function optionally inputs a Date object, but will default to the current time if none is provided.

1
2
3
export function getDayName(date?: Date) {
return (date ?? new Date()).toLocaleDateString("en-US", { weekday: "long" });
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023