I am learning React Native. Made 1 2 apps.
Now in my third app I need to make some arithmetic operations. It is very simple.
Like 100 * 4.31 and 100 * 4.41
console.log(100 * 4.31)
console.log(100 * 4.41)
Output
430.99999999999994
441
Out put should be 4.31 in first log but it is not.
Can anyone find me a solution what is wrong with this simple arithmetic operation in React Native?