Float_Design

Numbers

Float Decimal Values

Specifically I have linked for React Native If we want to trim down the decimals of the float output to only specific limit you can use this function.

var value = 10;
value = value.toFixed(2);
this.setState({subTotal: value});