I\'m literally looking for the solution to this problem for two days and I can\'t find a thing... Basically what I want is to get selected options from my
Change [ngModel] to [(ngModel)](two way binding) which will update selectedCars array as soon as you select / unselect and option in drop-down.
[ngModel]
[(ngModel)]
selectedCars
{{car.Model}}
Otherwise do add below attribute to your select element shown below, it is one as the same thing doing [(ngModel)].
(ngModelChange)="selectedCars=$event"