var a = 'yhahaha';
var b;
switch(a) {
case 'ahaha':
b = 1;
break;
case 'ohoho':
b = 2;
break;
case 'ihihi':
b = 3;
break;
case 'yhahaha':
b = 4;
break;
}
var b;
if (a === 'ahaha') {
b = 1;
} else if (a === 'ohoho') {
b = 2;
} else if (a === 'ihihi') {
b = 3;
} else if (a === 'yhahaha') {
b = 4;
}
var b;
do {
if (a === 'ahaha') {
b = 1;
break;
}
if (a === 'ohoho') {
b = 2;
break;
}
if (a === 'ihihi') {
b = 3;
break;
}
if (a === 'yhahaha') {
b = 4;
}
} while(0)
var b = {
ahaha: 1,
ohoho: 2,
ihihi: 3,
yhahaha: 4,
}[a]
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
switch | |
if else | |
do while 0 | |
object |
Test name | Executions per second |
---|---|
switch | 16338544.0 Ops/sec |
if else | 4373649.5 Ops/sec |
do while 0 | 4370581.5 Ops/sec |
object | 16349788.0 Ops/sec |
I'll break down the benchmark definition and test cases to explain what's being tested, compare different approaches, and discuss pros and cons.
Benchmark Definition
The benchmark measures the performance of four different approaches:
switch
statementif-else
chaindo-while
loop with nested if
sEach approach is designed to achieve the same result: assigning a value to a variable b
based on the string a
.
Individual Test Cases
Here's a brief explanation of each test case:
switch(a) {
case 'ahaha': b = 1; break;
case 'ohoho': b = 2; break;
case 'ihihi': b = 3; break;
case 'yhahaha': b = 4; break;
}
The switch statement uses a switch
keyword to evaluate the value of a
. If the value matches one of the specified cases, the corresponding code is executed.
if (a === 'ahaha') { b = 1; } else if (a === 'ohoho') { b = 2; } else if (a === 'ihihi') { b = 3; } else if (a === 'yhahaha') { b = 4; }
This code uses an if-else
chain to evaluate the value of a
. Each conditional statement is checked in sequence until a match is found.
do {
if (a === 'ahaha') { b = 1; break; }
if (a === 'ohoho') { b = 2; break; }
if (a === 'ihihi') { b = 3; break; }
} while(0)
This code uses a do-while
loop with nested if
statements to evaluate the value of a
. The loop continues until all conditions are met.
var b = {
ahaha: 1,
ohoho: 2,
ihihi: 3,
yhahaha: 4
}[a]
This code uses an object with string keys to access a value based on the value of a
.
Pros and Cons
Here's a brief analysis of each approach:
Library Usage
The benchmark uses the break
statement, which is a built-in JavaScript statement that exits the switch block.
Special JS Features
There are no special JavaScript features or syntax used in this benchmark.
Alternative Approaches
Other alternatives to these approaches include:
a
and assign a value to b
.Keep in mind that these alternatives may have performance implications or trade-offs in terms of maintainability and readability.