You can use moment.js
If you only want to go back to 1960 from today you can iterate like so
var year = [];
for(i=0;i<=62;i++){
year.push(moment().subtract(i,'year').format("YYYY"));
}
return year;
Though the number 62 is relative as that could change this coming January so you may want to consider using a variable there (count the number of years back to 1960. But this is the quick and dirty way