Ensure string speed comparisons (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Adding
const string = "foo bar baz";
const stringString = string + '';
ready
String Template
const string = "foo bar baz";
const stringString = `${string}`;
ready
String(number)
const string = "foo bar baz";
const stringString = String(string);
ready
number.toString()
const string = "foo bar baz";
const stringString = string.toString();
ready

Revisions

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