1

0.35.toFixed(1) is rounding Down to 0.3

while 0.25.toFixed(1) is rounding Up also to 0.3 

Checked for some other floats too.

let a=2.35.toFixed(1) // Returns '2.4'. Note it rounds up
let b=2.55.toFixed(1) // Returns '2.5'. Note it rounds down 
  
Samar
  • 3
  • 2
Shlomi Lachmish
  • 541
  • 5
  • 14
  • 2
    Does this answer your question? [Javascript toFixed Not Rounding](https://stackoverflow.com/questions/10015027/javascript-tofixed-not-rounding) – trixo Sep 01 '21 at 12:57

0 Answers0