I have input text field in angular, that converts large value to 5.5E9. When the value is supposed to show - 5500000000
Here is the input field:
<input [(ngModel)]="sck"
name="cap1" [pattern]="checkPattern"
placeholder="cap" type="text"
class="ng-untouched ng-pristine ng-valid" #uname="ngModel">
Here is the check pattern in the ts
this.checkPattern = "^[0-9]*$";
Please how do I prevent the exponential value in the input field