Array of years ES6
Create an array of years
HTML
<div ng-app="ctrl" ng-controller="mindCtrl">
<select ng-model="options.year" ng-options="y for y in yearArray"></select> {{options.year}}
</div>
JavaScript
angular.module("ctrl", []).controller("mindCtrl", function($scope) {
var now = new Date(),
year = now.getFullYear();
$scope.yearArray = Array.from(Array(90)).map((e, i) => year - i);
$scope.options = {
year: $scope.yearArray[0]
}
});