YouTip LogoYouTip

Func Weekday

# VBScript Weekday Function * * Complete VBScript Reference Manual](#) * * * The Weekday function returns a number representing the day of the week, between 1 and 7. ### Syntax Weekday(date[,firstdayofweek]) | Parameter | Description | | :--- | :--- | | date | Required. The date expression to be evaluated. | | firstdayofweek | Optional. Specifies the first day of the week. Can use the following values: * 0 = vbUseSystemDayOfWeek - Use the National Language Support (NLS) API setting * 1 = vbSunday - Sunday (default) * 2 = vbMonday - Monday * 3 = vbTuesday - Tuesday * 4 = vbWednesday - Wednesday * 5 = vbThursday - Thursday * 6 = vbFriday - Friday * 7 = vbSaturday - Saturday | ## Example ## Example document.write("document.write(Weekday(" & chr(34) & "2010-02-16" & chr(34) & ",0) & " & chr(34) & "
" & chr(34) & ") ") document.write(Weekday("2010-02-16",1) & "
") document.write(Weekday("2010-02-16",2) & "
") document.write(Weekday("2010-02-16",3) & "
") document.write(Weekday("2010-02-16",4) & "
") document.write(Weekday("2010-02-16",5) & "
") document.write(Weekday("2010-02-16",6) & "
") The output of the above example is: document.write(Weekday("2010-02-16",0) & " ") 3 2 1 7 6 5 [Try it Β»](#) * * Complete VBScript Reference Manual](#)
← Func WeekdaynameFunc Timevalue β†’