backquote vs manual concat (v35)

Revision 35 of this benchmark created on


Setup

var a = 5, b= 10, c = 20;

Test runner

Ready to run.

Testing in
TestOps/sec
backquote
var r=`${a},${b},${c}`;
ready
manual concat
var r=a+','+b+','+c;
ready

Revisions

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