concat (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
join
var path = [13, 02, 1990].join('/')
ready
concat
var path = 13 + '/' + 02 + '/' + 1990
ready
bigJoin
var path =  ['very','very','very','very','very','very','very','very','very','long','path'].join('/');
ready
bigConcat
var path = 'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'very'+'/'+'long'+'/'+'path';
ready
bigConcatMixed
var path = 'very'+'/'+2+'/'+'very'+'/'+5+'/'+'very'+'/'+11+'/'+'very'+'/'+9+'/'+'very'+'/'+-9898+'/'+'path';
ready
concatMixed
var path = 'riri' + '/' + 'fifi' + '/' + 'loulou';
ready
bigConcat2
var path = 'very'+'/'+'very1'+'/'+'very2'+'/'+'very3'+'/'+'very4'+'/'+'very5'+'/'+'very6'+'/'+'very7'+'/'+'very8'+'/'+'long'+'/'+'path';
ready

Revisions

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