This is my html code:
<input type="number" class="form-control" [(ngModel)]="home" name="home" >
The problem is that I want to show the number in this way:
10.00
100.10
100.88
199.99
( I want a number with unlimited integer part and at least two digits)
With my code if there is this numbero 100.10 it show me 100.1. Anyone can help me?