<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
(function() {
var loadTimeout = 5000;
var loadFired = false;
var timeoutFallback;
function onWindowLoad() {
if (!loadFired) {
loadFired = true;
clearTimeout(timeoutFallback);
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'window_load'
});
}
}
function fallback() {
if (!loadFired) {
loadFired = true;
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'load_fallback'
});
}
}
window.addEventListener('load', onWindowLoad);
timeoutFallback = setTimeout(fallback, loadTimeout);
})();
(function() {
var loadTimeout = 5000;
var loadFired = false;
var timeoutFallback;
function onWindowLoad() {
if (loadFired) {
return;
}
loadFired = true;
clearTimeout(timeoutFallback);
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'window_load'
});
}
function fallback() {
if (loadFired) {
return;
}
loadFired = true;
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'load_fallback'
});
}
window.addEventListener('load', onWindowLoad);
timeoutFallback = setTimeout(fallback, loadTimeout);
})();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
actual | |
future |
Test name | Executions per second |
---|---|
actual | 3522.6 Ops/sec |
future | 0.5 Ops/sec |
The provided benchmark tests the performance of two JavaScript snippets related to handling window load events and implementing early return patterns in the code. Below is a breakdown of each test case along with a discussion of their characteristics, pros, and cons.
Test Name: "actual"
(function() {
var loadTimeout = 5000;
var loadFired = false;
var timeoutFallback;
function onWindowLoad() {
if (!loadFired) {
loadFired = true;
clearTimeout(timeoutFallback);
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({'event': 'window_load'});
}
}
function fallback() {
if (!loadFired) {
loadFired = true;
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({'event': 'load_fallback'});
}
}
window.addEventListener('load', onWindowLoad);
timeoutFallback = setTimeout(fallback, loadTimeout);
})();
loadFired
to ensure the event is only logged once.Test Name: "future"
(function() {
var loadTimeout = 5000;
var loadFired = false;
var timeoutFallback;
function onWindowLoad() {
if (loadFired) {
return;
}
loadFired = true;
clearTimeout(timeoutFallback);
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({'event': 'window_load'});
}
function fallback() {
if (loadFired) {
return;
}
loadFired = true;
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({'event': 'load_fallback'});
}
window.addEventListener('load', onWindowLoad);
timeoutFallback = setTimeout(fallback, loadTimeout);
})();
loadFired
is already true
, which might offer a slight performance gain by avoiding unnecessary execution.The benchmark results indicate how many times per second (Executions Per Second) each test runs:
Pros of "actual":
Cons of "actual":
loadFired
is already true
.Pros of "future":
Cons of "future":
Other alternatives to handling window load events could include:
DOMContentLoaded
event for quicker performance metrics, as this fires as soon as the document structure is ready, independent of stylesheets and images loading.These alternatives present their own trade-offs in terms of complexity, performance, and responsiveness to user interactions. The choice would depend on the specific requirements of the application being developed.