How To Remove Empty Line from Ionic & Angular 1 List Select Options

How To Remove Empty Line from Ionic & Angular 1 List Select Options:

One solution is to make option hidden and use ng-if.

<select ng-options="option.value as option for option in optionArray">
    <option value="" ng-if="false"></option>
</select>

For Angular above 1.4 use ng-show=”false” instead of ng-if.