Skip to content

Instantly share code, notes, and snippets.

@cvializ
Forked from jridgewell/index.html
Last active November 16, 2018 16:42
Show Gist options
  • Save cvializ/f638cacc866a1b2d6e517e6cfa900d6b to your computer and use it in GitHub Desktop.
Save cvializ/f638cacc866a1b2d6e517e6cfa900d6b to your computer and use it in GitHub Desktop.
Iterating over collections of elements (https://jsbench.github.io/#f638cacc866a1b2d6e517e6cfa900d6b) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Iterating over collections of elements</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
<h2><code>cmd + alt + j</code> or <code>ctrl + alt + j</code></h2>
</body>
</html>
"use strict";
(function (factory) {
if (typeof Benchmark !== "undefined") {
factory(Benchmark);
} else {
factory(require("benchmark"));
}
})(function (Benchmark) {
var suite = new Benchmark.Suite;
Benchmark.prototype.setup = function () {
var div = document.createElement('div');
for (let i = 0; i < 500; i++) {
div.appendChild(document.createElement('div'));
}
function noop(o) { return o; }
function toArray(arrayLike) {
if (!arrayLike) {
return [];
}
const array = new Array(arrayLike.length);
for (let i = 0; i < arrayLike.length; i++) {
array[i] = arrayLike[i];
}
return array;
}
};
suite.add("Simple for loop undefined, static list", function () {
// Simple for loop undefined, static list
var elements = div.querySelectorAll('div');
for (var i = 0; elements[i] != undefined; i++) {
noop(elements[i]);
}
});
suite.add("Complex for loop undefined, static list", function () {
// Complex for loop undefined, static list
var elements = div.querySelectorAll('div');
for (var i = 0, element; (element = elements[i]) != undefined; i++) {
noop(element);
}
});
suite.add("Length, static list", function () {
// Length, static list
var elements = div.querySelectorAll('div');
for (var i = 0; i < elements.length; i++) {
noop(elements[i]);
}
});
suite.add("Cached Length, static list", function () {
// Cached Length, static list
var elements = div.querySelectorAll('div');
for (var i = 0, length = elements.length; i < length; i++) {
noop(elements[i]);
}
});
suite.add("Simple for loop undefined, live list", function () {
// Simple for loop undefined, live list
var elements = div.children;
for (var i = 0; elements[i] != undefined; i++) {
noop(elements[i]);
}
});
suite.add("Complex for loop undefined, live list", function () {
// Complex for loop undefined, live list
var elements = div.children;
for (var i = 0, element; (element = elements[i]) != undefined; i++) {
noop(element);
}
});
suite.add("Length, live list", function () {
// Length, live list
var elements = div.children;
for (var i = 0; i < elements.length; i++) {
noop(elements[i]);
}
});
suite.add("Cached Length, live list", function () {
// Cached Length, live list
var elements = div.children;
for (var i = 0, length = elements.length; i < length; i++) {
noop(elements[i]);
}
});
suite.add("toArray, static list", function () {
// toArray, static list
var elements = div.querySelectorAll('div');
toArray(elements).forEach(e => noop(e));
});
suite.add("toArray, live list", function () {
// toArray, live list
var elements = div.children;
toArray(elements).forEach(e => noop(e));
});
suite.on("cycle", function (evt) {
console.log(" - " + evt.target);
});
suite.on("complete", function (evt) {
console.log(new Array(30).join("-"));
var results = evt.currentTarget.sort(function (a, b) {
return b.hz - a.hz;
});
results.forEach(function (item) {
console.log((idx + 1) + ". " + item);
});
});
console.log("Iterating over collections of elements");
console.log(new Array(30).join("-"));
suite.run();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment