<!--your preparation HTML code goes here-->
var str = 'abc';
str = str.charAt(Math.floor(Math.random() * 3));
var num = str.charCodeAt(0)
const a = 'a'.charCodeAt(0)
const b = 'b'.charCodeAt(0)
const c = 'c'.charCodeAt(0)
function handle_switch (num) {
switch (num) {
case 97: console.log('A'); break;
case 98: console.log('B'); break;
case 99: console.log('C'); break;
}
}
const object = {
97: function () { console.log('A') },
98: function () { console.log('B') },
99: function () { console.log('C') }
}
function handle_object (num) { object[num]() }
handle_switch(num)
handle_object(num)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
switch test | |
object test |
Test name | Executions per second |
---|---|
switch test | 80226.0 Ops/sec |
object test | 73937.1 Ops/sec |
The benchmark being tested compares two different approaches for handling a simple lookup based on a character's ASCII value: using a switch
statement versus an object literal
as a lookup table.
Switch Statement:
handle_switch(num)
function, a switch
statement evaluates the ASCII value of a character to determine which console log statement to execute. Each case
corresponds to a specific character ('a', 'b', or 'c').Object Literal:
handle_object(num)
function makes use of an object where the keys are the ASCII values and the values are functions that log their corresponding characters. This allows for a direct lookup, where calling object[num]()
executes the function associated with the ASCII value.case
statements increases, especially if there’s a lot of branching logic or fallback cases.Performance: In the benchmark results, the switch statement executed approximately 80,226 times per second, while the object literal executed 73,937 times per second. The results indicate that the switch statement performed better in this specific benchmark, potentially due to the fact that the lookup in the switch statement was more straightforward.
Readability vs. Performance: While readability is essential, performance characteristics of both approaches can vary with larger datasets. Evaluating the trade-offs based on expected use cases can inform which approach is more suitable.
Other alternatives to achieve similar functionality include:
If-Else Chains: Using a series of if-else
conditions could serve similar purposes. However, this is generally less efficient than both switch statements and object lookups for multiple conditions.
Maps: Using a Map
instead of a plain object for more complex key-value relationships can be beneficial, especially for large datasets as it provides better performance for dynamic collections and inherits iterable properties.
Function Mapping: For actions that may require complex processing beyond mere logging, higher-order functions or classes can encapsulate behavior and state, though this might introduce additional complexity.
In summary, both the switch
statement and object literal
have their place in JavaScript development, and the context of their use cases—balancing between readability, maintainability, and performance—will guide developers in choosing the appropriate approach for their specific situations.