how to set value of multiselect dropdown for reactive forms in angular 6 examples in stackbliz
Example: how to set value of multiselect dropdown for reactive forms in angular 6
content_copy
<select multiple name="countries" [formControl]="countryControl">
<option *ngFor="let country of countries" [ngValue]="country">
{{ country.name }}
</option>
</select>