Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Chrome 118
Linux
Desktop
one year ago
Test name Executions per second
toString 331405.1 Ops/sec
JSON.stringify 299045.0 Ops/sec
template-literals 296571.9 Ops/sec
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());
  • template-literals

     
    (`${makeTestData()}`);