test

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
array
var gArray = [];
for (var i = 0; i < 8; i++) {
  gArray.push("rgba(" + "124" + "," + "124" + "," + "124" + "," + "124" + ") " + "124" + "%");
}
var test = "asdfsdfsf" + gArray.join(",\n");
console.log(test);
ready
string
var gString = "";

for (var i = 0; i < 8; i++) {
  gString = gString + "rgba(" + "124" + "," + "124" + "," + "124" + "," + "124" + ") " + "124" + "%" + ",\n";
}

var test = "asdfsdfsf" + gString;
console.log(test);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.