With ng-options the selectedCar will be a car object
<select
ng-model="selectedCar"
ng-options="car as car.description for car in cars track by car.id">
</select>
With ng-repeat the selectedCar wont be a car object and a need this object to future reference. I need to use title atribute and ng-options don't support this. How can i keep car object in option with ng-repeat?
<select>
<option
ng-model="selectedCar"
ng-repeat="car in cars"
value="{{car}}"
title="{{car.description}}">{{car.description}}
</option>
</select>