String merge

Benchmark created on


Description

adding string

Test runner

Ready to run.

Testing in
TestOps/sec
addition
let test = 'test';
let test2 = 'run';

test = test + ' ' + test2;
ready
operator
let test = 'test';
let test2 = 'run';

test += ' ' + test2;
ready
concat
let test = 'test';
let test2 = 'run';

test = test.concat(' ',test2);
ready

Revisions

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