bigstringcat

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
string
var s = "aeewr";
for (var i = 0; i < 1000; i++) {
 s += " asdfsdf";
}
ready
arr
var s = ['aeewr'];
for (var i = 0; i < 1000; i++) {
 s.push('adsfsdf');
}
s.join(" ");
ready

Revisions

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