String concatenation (v59)

Revision 59 of this benchmark created by GarrettS on


Description

Different ways to concatenate strings together

Preparation HTML

<script>
  var arr = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Direct concatenation
var foo = 'a' + 'b' + 'c' + 'd' + 'e' + 'f' + 'g' + 'h' + 'i';
ready
Individual += statements
var foo = 'a';
foo += 'b';
foo += 'c';
foo += 'd';
foo += 'e';
foo += 'f';
foo += 'g';
foo += 'h';
foo += 'i';
ready
Individual statements
var foo = 'a';
foo = foo + 'b';
foo = foo + 'c';
foo = foo + 'd';
foo = foo + 'e';
foo = foo + 'f';
foo = foo + 'g';
foo = foo + 'h';
foo = foo + 'i';
ready
Using Array#join
var foo = arr.join('');
ready
Single individual statement
var foo = 'a';
foo += 'b' + 'c' + 'd' + 'e' + 'f' + 'g' + 'h' + 'i';
ready
Function based (for)
function concat(arr) {
  len = arr.length;
  for (s = "", i = 0; i < len; s += arr[i], i++);
  return s;
}

var foo = concat(arr);
ready
no concatenation
var foo = "abcdefghi";
ready
String.concat
var foo = String.concat('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i');
ready

Revisions

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