Can someone explain the logic behind why the chrome and firefox engines do below arithmetic differently than IE? Below is a snap from firefox console.
Screenshot from browser console
console.log('(26.6811*1000/1000) = ' + (26.6811 * 1000 / 1000));
console.log('(26.6821*1000/1000) = ' + (6.6821 * 1000 / 1000));
console.log('(26.6721*1000/1000) = ' + (26.6721 * 1000 / 1000));