I am using Select2 jquery plugin to select mulitple values from dropdown. I have used following code :
 <select id="countries" name="countries[]" multiple="multiple">
  <option *ngFor="let country of countries" value="{{country}}">{{country}}</option>
 </select>
Now I couldnot find which property I should use to get the list of selected values
 
     
    