Script Preparation code:
AخA
 
var intA = 42.034;
var strB = "42.034";
Tests:
  • No conversion

     
    var res = intA * strB;
  • parseInt

     
    var res = parseInt(intA) * parseInt(strB);
  • Number

     
    var res = Number(intA) * Number(strB);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    No conversion
    parseInt
    Number

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 11 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Chrome 123 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
No conversion 11741378.0 Ops/sec
parseInt 5596399.5 Ops/sec
Number 5411771.5 Ops/sec