cDow( ) Function
Description:
| |
The cDow() function returns the day of the week
as a character string, eg. "Sunday", "Monday", etc.,
for the Julian date nDate. |
|
Syntax:
Parameters:
| |
numeric: nDate |
A Julian date. |
| |
string: retval |
The day of the week as a string for the day nDate. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
local retval
retval = cDow(jdate()) // jdate() returns the julian date for today
println("Today is " + retval + ", " + date())
|
|