In my programs, I need "float" numbers rounded to the nearest two decimal digits, and after some research I decided to use toFixed(..) for this purpose, like shown in the example below. What are the downsides of using toFixed()? Does it work in all browsers correctly? If not, what are some cases that it does not work correctly?
var numb = 123.23454;
numb = +numb.toFixed(2);