String concatenation (v2)

Revision 2 of this benchmark created on


Preparation HTML

<script>
  var arr = ['a', 'b', 'c', 'd']
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Direct concatenation
var foo = 'a' + 'b' + 'c' + 'd';
ready
Individual += statements
var foo = 'a';
foo += 'b';
foo += 'c';
foo += 'd';
ready
Individual statements
var foo = 'a';
foo = foo + 'b';
foo = foo + 'c';
foo = foo + 'd';
ready
Using Array#join
var foo = arr.join('');
ready

Revisions

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