I m having a dropdown for which I am using the ng-options to load the values from the model which is populated by the controller. Now I need to have one more option which is <option value='any'>any</option> which should be there as the selected option by default. How to do this in angular way?
<body ng-controller="myController">
<h1>States in India!</h1>
<select ng-options="state for state in states" ng-model="selectedState"> </select>
</body>
Plnkr link attached - Plnkr link