Year: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
Year(''date'') | Year(''date'') | ||
Line 5: | Line 7: | ||
Year returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents a date. | Year returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents a date. | ||
== Example == | == Example (Basic) == | ||
<pre> | <pre> | ||
Rem Year Example | Rem Year Example | ||
'Year returns year of a date as an integer | 'Year returns year of a date as an integer | ||
Dim IndepYear, Birthyear | Dim IndepYear, Birthyear | ||
IndepYear = Year("July 4, 1776") | IndepYear = Year("July 4, 1776") | ||
Line 20: | Line 23: | ||
<pre> | <pre> | ||
YEAR of July 4, 1776: 1776 | |||
YEAR of 12/27/70: 1970 | |||
</pre> | </pre> | ||
Line 29: | Line 32: | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Date and Time]] | |||
[[Category:BASIC Functions]] |
Latest revision as of 15:40, 25 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
Year(date)
Description
Year returns an integer, that represents the year of the given date.The required parameter, date, can be any expression that represents a date.
Example (Basic)
Rem Year Example 'Year returns year of a date as an integer Dim IndepYear, Birthyear IndepYear = Year("July 4, 1776") Print "YEAR of July 4, 1776:", IndepYear Birthyear = Year("12/27/70") Print "YEAR of 12/27/70:", Birthyear
Output
YEAR of July 4, 1776: 1776 YEAR of 12/27/70: 1970