I have the following inputs.
<input type="radio" id="someId" name="someName" value="1" [(ngModel)]="someArray]"/>
<input type="radio" id="someId" name="someName" value="2" [(ngModel)]="someArray]"/>
<input type="radio" id="someId" name="someName" value="3" [(ngModel)]="someArray]"/>
The are getting stored to array as ["1", "2", "3"] as strings. I need them to store to the array as integers. How can I achiveve this?