String concatenation (v23)

Revision 23 of this benchmark created on


Description

Different ways to concatenate strings together

Preparation HTML

<script>
  var arr = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Direct concatenation
var foo = 'a' + 'b' + 'c' + 'd' + 'e' + 'f' + 'g' + 'h' + 'i' + 'j' + 'k' + 'l' + 'm' + 'n' + 'o' + 'p' + 'q' + 'r' + 's' + 't' + 'u' + 'v' + 'w' + 'x' + 'y' + 'z';
ready
Individual += statements
var foo = 'a';
foo += 'b';
foo += 'c';
foo += 'd';
foo += 'e';
foo += 'f';
foo += 'g';
foo += 'h';
foo += 'i';
foo += 'j';
foo += 'k';
foo += 'l';
foo += 'm';
foo += 'n';
foo += 'o';
foo += 'p';
foo += 'q';
foo += 'r';
foo += 's';
foo += 't';
foo += 'u';
foo += 'v';
foo += 'w';
foo += 'x';
foo += 'y';
foo += 'z';
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';
foo = foo + 'j';
foo = foo + 'k';
foo = foo + 'l';
foo = foo + 'm';
foo = foo + 'n';
foo = foo + 'o';
foo = foo + 'p';
foo = foo + 'q';
foo = foo + 'r';
foo = foo + 's';
foo = foo + 't';
foo = foo + 'u';
foo = foo + 'v';
foo = foo + 'w';
foo = foo + 'x';
foo = foo + 'y';
foo = foo + 'z';
ready
Using Array#join
var foo = arr.join('');
ready
Single individual statement
var foo = 'a';
foo += 'b' + 'c' + 'd' + 'e' + 'f' + 'g' + 'h' + 'i' + 'j' + 'k' + 'l' + 'm' + 'n' + 'o' + 'p' + 'q' + 'r' + 's' + 't' + 'u' + 'v' + 'w' + 'x' + 'y' + 'z';
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

Revisions

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