getAbbreviatedDayNames |
Returns the abbreviated day names for the corresponding locale
Syntax
localeObject.getAbbreviatedDayNames()
Parameters
NA
Return Value
Returns the abbreviated day names as an array
Example
The following example displays how this method is used.
importType("wcp.library.util.LocaleFormat"); importType("wcp.library.util.Locale"); var localeObject = new Locale(sLocale);//sLocale --> "en-US" localeObject.getAbbreviatedDayNames();//Will set "Sun Mon Tue Wed Thu Fri Sat" for locale "en-US"