VBScript Weekday Function
Complete VBScript Reference
The Weekday function returns a number between 1 and 7, that represents the day of the week.
Syntax
Weekday(date[,firstdayofweek])
| Parameter |
Description |
| date |
Required. The date expression to evaluate |
| firstdayofweek |
Optional. Specifies the first day of the week. Can take the
following values:
- 0 = vbUseSystemDayOfWeek - Use 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
<script type="text/vbscript">
document.write(Weekday("2010-02-16",1) & "<br />")
document.write(Weekday("2010-02-16",2) & "<br />")
document.write(Weekday("2010-02-16",3) & "<br />")
document.write(Weekday("2010-02-16",4) & "<br />")
document.write(Weekday("2010-02-16",5) & "<br />")
document.write(Weekday("2010-02-16",6) & "<br />")
</script>
The output of the code above will be:
3
2
1
7
6
5
Try it yourself »
Complete VBScript Reference
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]