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

Revision 63 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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