I am currently working with a select element that is being populated using ng-options.
<select class="form-control form-group col-sm-2" ng-model="defaulObject"
ng-options="object.description for object in allObjects"></select>
My goal now is to include a default option field that displays a message such as 'Please select an object'. However, I do not want this message to be saved in the model (defaultObject) since it's just a string. Is there a way to achieve this functionality with AngularJS?