concat/join-with-push/join-without-push (v60)

Revision 60 of this benchmark created by john schroder on


Test runner

Ready to run.

Testing in
TestOps/sec
concat
temp = 'b';
res = 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a' temp  + 'a' + temp + 'a' + temp  + 'a' + temp  + 'a' + temp  + 'a'; 
ready
join-with-push
for (var res = [], i = 0; i < 128; i++) {
  res.push('a');
}
res = res.join('');
ready
join-without-push
res = ['a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a'];
res = res.join('');
ready

Revisions

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