var someFloat = '0.123456789';
parseFloat(parseFloat(someFloat).toFixed(2));
Math.round(someFloat * 100) / 100;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
toFixed | |
Math.round |
Test name | Executions per second |
---|---|
toFixed | 8159346.0 Ops/sec |
Math.round | 1185677056.0 Ops/sec |
I'd be happy to help explain the benchmark being tested on MeasureThat.net.
Benchmark Overview
The benchmark tests two different approaches for converting a floating-point number to an integer: using parseFloat
followed by toFixed
, and using Math.round
. The input value is set to '0.123456789'
.
Options Compared
Two options are compared:
parseFloat(parseFloat(someFloat).toFixed(2);
: This approach uses the parseFloat
function twice, first to convert the string to a floating-point number, and then again to extract two decimal places using toFixed
. The resulting integer value is then returned.Math.round(someFloat * 100) / 100;
: This approach multiplies the input float by 100, rounds the result using Math.round
, and then divides by 100 to get the original integer value.Pros and Cons
parseFloat(parseFloat(someFloat).toFixed(2);
Pros:
Cons:
parseFloat
call may not be necessary if the input string already represents a floatMath.round(someFloat * 100) / 100;
Pros:
Cons:
Library: None
Neither option uses any external libraries. Both are built-in JavaScript functions.
Special JS Feature or Syntax: None
There is no special JavaScript feature or syntax being tested in this benchmark.
Other Alternatives
If you were to implement these tests yourself, some alternative approaches might include:
Number
instead of parseFloat
(since Number
can parse strings that represent floats)However, for most use cases, the built-in JavaScript functions used in this benchmark will provide adequate results.