Lets say I have an number which is equal to 288.65
and I want to multiply out the decimal point to achieve the desired result of 28865
If I simply just try say console.log(288.65 * 100)
it will return 28864.999999999996
I am not sure why it is doing this, any help will be much appreciated.