string

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
String 1
var a = '3.34234234';
var b = '45.143423856';

function test () {
	return `${a} ${b}`;
}


test();
ready
String 2
var a = '3.34234234';
var b = '45.143423856';

function test () {
	return String([a, b])
}


test();
ready

Revisions

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