I'm using react to control the value. Is the option of rounding the value to two decimal places in HTML input
type number? I have step 0.166666666
, but in HTML input view I'd like to display: 0.17
instead of 0.166666666666
, 0.33
instead of 0.333333333333
and so on...
I do not want to change the value
of input, I would like to change only the Input view not value
. toFixed
won't work for me.