What is the best way to create a select dropdown containing numbers from 1 to 10, with each option having a distinct value and the default selected option being 1?
HTML
<select [(ngModel)]="selectNum">
<option value=""> </option>
</select>