sysGetDayOfWeekString

Returns the full day name for a given date (e.g., 'Monday'). Takes day (day of month 1-31), month (month 1-12), year (year number). Returns the full English name of the day of the week for the specified date.

System

Parameters & Returns

Parameters

day Int
month Int
year Int

Returns

String

Quick Summary

Returns the full day name for a given date (e.g., 'Monday'). Takes day (day of month 1-31), month (month 1-12), year (year number). Returns the full English name of the day of the week for the specified date.

Technical Exegesis...

Returns the full English name of the day of the week for the specified date. Calls sysGetDayOfWeek internally to calculate the day number using Zeller's congruence, then returns the corresponding full day name.

Day names: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday. Useful for displaying human-readable day names in calendars and date displays.

Example

Example.bam
; No example implemented yet