Script Preparation code:
AخA
 
function moreData(arr, left) {
  if(left === 0) return arr;
  else {
    arr.push(Math.floor(Math.random() * 256));
    return moreData(arr, left - 1);
  }
}
function makeTestData() { return moreData([], 4); }
Tests:
  • toString

     
    makeTestData().toString()
  • JSON.stringify

     
    JSON.stringify(makeTestData());
  • type coercion

     
    makeTestData() + ''
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    toString
    JSON.stringify
    type coercion

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
toString 453543.7 Ops/sec
JSON.stringify 398573.0 Ops/sec
type coercion 413757.4 Ops/sec