Tests:
  • if

    AخA
     
    const a = 1;
            if (a == 5) {
                console.log("a is 5");
            } else if (a == 4) {
                console.log("a is 4");
            } else if (a == 1) {
                console.log("a is 4");
            }
  • switch

     
    const a = 1;
            switch (a) {
                case 5:
                    console.log("a is 5");
                    break;
                case 4:
                    console.log("a is 4");
                    break;
                case 1:
                    console.log("a is 1");
                    break;
            }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    if
    switch

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Chrome 119 on Windows
View result in a separate tab
Test name Executions per second
if 279669.3 Ops/sec
switch 273636.2 Ops/sec