concat vs + vs join (v30)

Revision 30 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
concat
'test1 '.concat('foot2 ', 'head3 ');
ready
+
'test1 ' + 'foot2 ' + 'head3 '
ready
join
['test1 ', 'foot2 ', 'head3 '].join();
ready

Revisions

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