How can I remove decimal in react native ?? this is the calculation
calculateSum = () => {
const { peso, altura } = this.state;
this.setState({
imc: (Number(peso) / (Number(altura)*Number(altura))) * 10000
});
}
shows me for example 24,8787321837812 and I just want you to give me 2 decimals 24.87 ??? I tried the toFixed method but it did not work out.