Append string vs join array (v16)

Revision 16 of this benchmark created on


Setup

var i = 0, str = '', arr = [],
    w1 = 'brown', w2 = 'jumped', w3 = 'lazy';

Test runner

Ready to run.

Testing in
TestOps/sec
String append #1
str += 'Quick ' + w1 + ' fox ' + w2 + ' over the ' + w3 + ' dog. ';
ready
String append #2
str += 'Quick ';
str += w1;
str += ' fox ';
str += w2;
str += ' over the ';
str += w3;
str += ' dog. ';
ready
Array join #2
arr[i++] = 'Quick ' + w1 + ' fox ' + w2 + ' over the ' + w3 + ' dog. ';
arr.join('');
ready
Array join #2
arr[i++] = 'Quick ';
arr[i++] = w1;
arr[i++] = ' fox ';
arr[i++] = w2;
arr[i++] = ' over the ';
arr[i++] = w3;
arr[i++] = ' dog. ';
o = arr.join('');
ready
Array join #3
arr[i++] = 'Quick ';
arr[i++] = w1;
arr[i++] = ' fox ';
arr[i++] = w2;
arr[i++] = ' over the ';
arr[i++] = w3;
arr[i++] = ' dog. ';
var o = '';
for (var j = 0, k = arr.length; j<k; j++)
    o += arr[j];
ready

Revisions

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