Whatever message this page gives is out now! Go check it out!
DayOfWeekAsString(dayofweek [, locale])Parameter | Description |
dayofweek | Integer, in the range 1 (Sunday) - 7 (Saturday). |
locale | Locale to use instead of the locale of the page when processing the function |
<cfscript>
dayArray=[1,2,3,4,5,6,7]
dayOfWeekArray=dayArray.map(function(item){
return DayOfWeekAsString(dayArray[item])
})
writeDump(dayOfWeekArray)
</cfscript>