Is there a way to store the selected value from a dropdown in a variable and then display it on the console?
HTML
<select class="form-control box" id="title" required>
<option *ngIf="nationality_flag">{{nationality}}</option>
<option *ngFor="let lists of default_nationality">{{lists}}</option>
</select>