koko

Benchmark created by kali on


Test runner

Ready to run.

Testing in
TestOps/sec
string
var res = '',
    count = 10000;
while (count--) {
  res += 'a';
}
ready
array
var res = [],
    count = 10000;
while (count--) {
  res.push('a');
}

res = res.join('');
ready

Revisions

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