for (let a = 0; a < 1_000_000; a++) {
a == 1;
}
for (let a = 0; a < 1_000_000; a++) {
a === 1;
}
for (let a = 0; a < 1_000_000; a++) {
a == '1';
}
for (let a = 0; a < 1_000_000; a++) {
a === '1';
}
for (let a = 0; a < 1_000_000; a++) {
a == true;
}
for (let a = 0; a < 1_000_000; a++) {
a == null;
}
for (let a = 0; a < 1_000_000; a++) {
a === null;
}
for (let a = 0; a < 1_000_000; a++) {
a === true;
}
for (let a = 0, b = ''; a < 1_000_000; a++) {
b == '0';
}
for (let a = 0, b = ''; a < 1_000_000; a++) {
b === '0';
}
for (let a = 0, b = ''; a < 1_000_000; a++) {
b == 0;
}
for (let a = 0, b = ''; a < 1_000_000; a++) {
b === 0;
}
for (let a = 0, b = {}; a < 1_000_000; a++) {
b == true;
}
for (let a = 0, b = false; a < 1_000_000; a++) {
b == true;
}
for (let a = 0, b = []; a < 1_000_000; a++) {
b == true;
}
for (let a = 0, b = ''; a < 1_000_000; a++) {
b == true;
}
for (let a = 0, b = null; a < 1_000_000; a++) {
b == true;
}
for (let a = 0, b = null; a < 1_000_000; a++) {
b == undefined;
}
for (let a = 0, b = undefined; a < 1_000_000; a++) {
b == null;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
== | |
=== | |
== str | |
=== str | |
== true | |
== null | |
=== null | |
=== true | |
== str with str | |
=== str with str | |
== str with number | |
=== str with number | |
obj to bool | |
bool to bool | |
arr to bool | |
str to bool | |
null to bool | |
null == undefined | |
undefined == null |
Test name | Executions per second |
---|---|
== | 3692.1 Ops/sec |
null to bool | 3696.0 Ops/sec |
str to bool | 31.6 Ops/sec |
arr to bool | 5.0 Ops/sec |
bool to bool | 3658.8 Ops/sec |
obj to bool | 10.2 Ops/sec |
=== str with number | 3695.1 Ops/sec |
== str with number | 34.1 Ops/sec |
null == undefined | 5.9 Ops/sec |
=== str with str | 3697.0 Ops/sec |
=== true | 3681.8 Ops/sec |
=== null | 3673.7 Ops/sec |
== null | 3677.1 Ops/sec |
== true | 3685.6 Ops/sec |
=== str | 3675.9 Ops/sec |
== str | 135.8 Ops/sec |
=== | 3678.2 Ops/sec |
== str with str | 3670.9 Ops/sec |
undefined == null | 1837.5 Ops/sec |
This is a JSON (JavaScript Object Notation) data string that appears to represent a collection of test results from a browser emulator or testing framework.
Each object in the array represents a single test result, with keys like RawUAString
, Browser
, DevicePlatform
, and others. The values for these keys are strings or numbers that correspond to different types of data (e.g., user agent string, browser version, device platform, etc.).
What would you like me to help you with? Do you need help parsing this data, understanding the test results, or something else entirely?