@mystaticself
return ( (12.12 * 10) * (100 * 10) ) / 100; will give '1211.999999999998'
Where as return (12.12*100) will give '1212'
@mystaticself
return ( (12.12 * 10) * (100 * 10) ) / 100;
will give '1211.999999999998'
Where as
return (12.12*100)
will give '1212'