concat vs + vs join (v62)

Revision 62 of this benchmark created by Miguel Guzmán on


Test runner

Ready to run.

Testing in
TestOps/sec
+
let s = 'Lorem ';
s += 'impsum!';
ready
join
let s = 'Lorem ';
s.join('impsum!');
ready
concat
let s = 'Lorem ';
s.concat('impsum!');
ready

Revisions

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