Year

From NSB App Studio
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

Related Items

Day, Hour, Minute, Month, Now, Second, Time