Script Preparation code:
x
 
var testData = {};
for (let i = 0; i < 1000; i++) {
 testData[i.toString()] = "bla" + i; 
}
Tests:
  • JSON.stringify

     
    const data = JSON.stringify(testData);
  • string concat

     
    let str = "{";
    Object.keys(testData).forEach((k) => {
        str += "\"".concat(k).concat("\":\"").concat(testData[k]).concat("\",");
    });
    str = str.substring(0, str.length - 1);
    str += "}";
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    JSON.stringify
    string concat

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
Chrome 106 on Windows
View result in a separate tab
Test name Executions per second
JSON.stringify 7334.3 Ops/sec
string concat 3722.7 Ops/sec