how to only get the year in a date api jquery code example
Example 1: Javascript get current year
var currentYear= new Date().getFullYear();
Example 2: how to get the year in javascript
new Date().getFullYear(); // This will get you the current year