DateSerial: Difference between revisions
Jump to navigation
Jump to search
Created page with "DATESERIAL(''year'', ''month'', ''day'') '''Description''' DATESERIAL returns a date constructed from a given year, month, and day. The required parameter, ''year'', is any ..." |
|||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
''' | DateSerial(''year'', ''month'', ''day'') | ||
== Description == | |||
''' | DateSerial returns a date constructed from a given year, month, and day. The required parameter, ''year'', is any numeric expression ranging from 100 to 9999. The required parameters, ''month'' and ''day'', can be any numeric expression. | ||
== Example (Basic) == | |||
<pre> | <pre> | ||
Rem DateSerial Example | |||
' | 'DateSerial builds a date from its parts | ||
Dim IndepDay, Birthday | |||
IndepDay = | IndepDay = DateSerial(1776, 7, 4) | ||
Birthday = | Birthday = DateSerial(1970, 12, 27) | ||
Print "Independence Day:", IndepDay | |||
Print "My birthday:", Birthday | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 25: | Line 27: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[timeserial|TimeSerial]] | |||
[[Category:Language Reference]] | |||
[[Category:Date and Time]] | |||
[[ | [[Category:BASIC Functions]] |
Latest revision as of 15:22, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
DateSerial(year, month, day)
Description
DateSerial returns a date constructed from a given year, month, and day. The required parameter, year, is any numeric expression ranging from 100 to 9999. The required parameters, month and day, can be any numeric expression.
Example (Basic)
Rem DateSerial Example 'DateSerial builds a date from its parts Dim IndepDay, Birthday IndepDay = DateSerial(1776, 7, 4) Birthday = DateSerial(1970, 12, 27) Print "Independence Day:", IndepDay Print "My birthday:", Birthday
Output
Independence Day: 7/4/1776 My birthday: 12/27/1970 (''sample date output is machine dependant'')