jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
How does many event listeners effect performance
<div id="container"></div>
// grab your div element
let mainDiv = document.getElementById("container");
// add handlers
function addHandlers(count) {
// Loop to create the specified number of <div> elements
for (let i=0; i<count; i++) {
mainDiv.addEventListener("click", () => {
console.log("some event content here")
});
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Invoke 1 click handlers on ONE <div> |
| ready |
Invoke 2 click handlers on ONE <div> |
| ready |
Invoke 3 click handlers on ONE <div> |
| ready |
Invoke 4 click handlers on ONE <div> |
| ready |
Invoke 5 click handlers on ONE <div> |
| ready |
Invoke 10 click handlers on ONE <div> |
| ready |
Invoke 15 click handlers on ONE <div> |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.