String Conversion (v3)

Revision 3 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
toString
var num = 1;
var newString = num.toString();
ready
String
var num = 1;
var newString = String(num);
ready
Concat
var num = 1;
var newString = num + '';
ready

Revisions

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