var r = 1;
var g = 255;
var b = 128;
var hex = function (x) {
x = x.toString(16);
return x.length === 1 ? '0' + x : x;
};
let test = `#${(0x1000000 + (r << 16) + (g << 8) + b).toString(16).substring(1,7)}`;
let test = `#${hex(r)}${hex(g)}${hex(b)}`;
let test = `#${(0x1000000 + (r << 16) + (g << 8) + b).toString(16).slice(1)}`;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Bit Shift with Substring | |
String Concat | |
Bit Shift with Slice |
Test name | Executions per second |
---|---|
Bit Shift with Substring | 9564297.0 Ops/sec |
String Concat | 5699835.0 Ops/sec |
Bit Shift with Slice | 9682332.0 Ops/sec |
Let's break down the benchmark and its components.
Benchmark Overview
The benchmark is designed to measure the performance difference between three approaches for converting RGB colors to hexadecimal (HEX) values:
Library and Framework
None, as this is a standalone JavaScript benchmark.
Special JS Features or Syntax
There are no special JavaScript features or syntax used in this benchmark. The focus is on the performance comparison of different approaches.
Benchmark Preparation Code
The preparation code sets up some constants for RGB values (red r
, green g
, blue b
) and defines a simple function hex
that converts an integer to a hexadecimal string, padding with zeros if necessary.
Individual Test Cases
Each test case defines a specific scenario:
r << 16
and g << 8
) and then converted to a hexadecimal string using the hex
function. The resulting string is sliced to extract only the first 6 characters (using substring(1,7)
).hex
function and then concatenated together.slice(1)
method instead of substring(1,7)
.Other Alternatives
If these three approaches were not used, alternative methods for converting RGB colors to hexadecimal could include:
However, since the focus of this benchmark is on comparing performance, it's likely that these alternative approaches would be less efficient and not representative of real-world use cases.
Pros and Cons
Here are some pros and cons of each approach:
substring
would return an empty string).The benchmark results demonstrate the performance differences between these approaches, allowing users to choose the most suitable method for their specific use case.