
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get Current Year in JavaScript
To get an only current year, use the JavaScript getFullYear() method. JavaScript date getFullYear() method returns the year of the specified date according to local time. The value returned by getFullYear() is an absolute number. For dates between the years 1000 and 9999, getFullYear() returns a four-digit number, for example, 2008.
Example
You can try to run the following code to get a current year in JavaScript −
<html> <head> <title>JavaScript getFullYear Method</title> </head> <body> <script> var dt = new Date("December 30, 2017 23:15:00"); document.write("getFullYear() : " + dt.getFullYear() ); </script> </body> </html>
Output
getFullYear() : 2017
Advertisements