I am newbie to Angularjs. Here is my scenario.
I have an array of
numbers = ['1','2','3'];
And also have a
<select id="fileNumber" ng-model="files"></select>
How Can I add the values of array to the dropdown list fileNumber
I tried,
ng-options="numbers"
Can anyone say how to include array value to dropdown list.