I have a select/drop-down box in my Angularjs app:
<select ng-model="places">
<option value="1">London</option>
<option value="2">Paris</option>
<option value="3">Madrid</option>
<option value="4">Athens</option>
</select>
but in the HTML page there is an extra blank option
added above the London option. When I remove ng-model
then it renders as I would expect (i.e. 4 options with London showing by default). Is this normal?