JavaScript getFullYear() Method
More "Try it Yourself" examples below.
Definition and Usage
The getFullYear() method returns the year (four digits for dates between year 1000 and 9999) of the specified date.
Browser Support
Method | |||||
---|---|---|---|---|---|
getFullYear() | Yes | Yes | Yes | Yes | Yes |
Syntax
Date.getFullYear()
Parameters
None |
Technical Details
Return Value: | A Number, representing the year of the specified date |
---|---|
JavaScript Version: | ECMAScript 1 |
More Examples
Example
Return the year of a specific date:
var d = new Date("July 21, 1983 01:15:00");
var n = d.getFullYear();
Try it Yourself »
Related Pages
JavaScript Tutorial: JavaScript Dates
JavaScript Tutorial: JavaScript Date Formats
JavaScript Tutorial: JavaScript Date Get Methods
❮ JavaScript Date Object