weekDayNames
-
function
-
The weekDayNames() function returns the list of text strings used for weekday names when formatting dates. The adjectives long, short, and abbreviated may be used with this function to return variations on the names. The long form is the same as not specifying any adjective, the abbreviated form returns a list of three-letter abbreviations rather than the full name, and the short form returns numeric representations.
-
Examples: +
put the weekDayNames —> ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]
put the abbrev weekDayNames —> ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]
-
Related: weekDayName, dayOfWeek