Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Day function


May 13, 2021 VBScript


Table of contents


VBScript Day function

The VBScript Day function is used to return a date.


VBScript Day function Complete VBScript reference manual

The Day function returns a number of days representing the month between 1 and 31.

Grammar

Day(date)

Parameters

parameter describe
date Required.Represents any expression of the date.
<script type="text/vbscript">

document.write(Day("2010-02-16"))

</script>

The above example output results:

16

Try it out . . .


VBScript Day function Complete VBScript reference manual