console.log(0.03 % 0.01);
When i run this calculation i get the following result:
0.009999999999999998
In my understanding the result should be 0, what is going on here?
console.log(0.03 % 0.01);
When i run this calculation i get the following result:
0.009999999999999998
In my understanding the result should be 0, what is going on here?