Skip to content

Instantly share code, notes, and snippets.

@gaperton
Created May 5, 2017 15:27
Show Gist options
  • Save gaperton/ac050111c49c082a7f58e11a366739db to your computer and use it in GitHub Desktop.
Save gaperton/ac050111c49c082a7f58e11a366739db to your computer and use it in GitHub Desktop.
Population of the array (https://jsbench.github.io/#ac050111c49c082a7f58e11a366739db) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Population of the array</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;
suite.add("var arr = Array( 1000 );", function () {
var arr = Array( 1000 );
for( var i = 0; i < 1000; i++ ) arr[ i ] = {};
arr.length = 1000;
});
suite.add("var arr = [];", function () {
var arr = [];
for( var i = 0; i < 1000; i++ ) arr.push( {} );
});
suite.add("var arr = Array( 1010 );", function () {
var arr = Array( 1010 );
for( var i = 0; i < 1000; i++ ) arr[ i ] = {};
arr.length = 1000;
});
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("Population of the array");
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