Script Preparation code:
x
 
var vertices = [
      [1, 0, 0, 0],
      [0, 1, 0, 0],
      [0, 0, 1, 0],
      [0, 0, 0, 1],
    ]
var myCopy = null;
Tests:
  • JSON.stringify

     
    myCopy = JSON.parse(JSON.stringify(vertices));
  • structuredClone

     
    myCopy = vertices.slice();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    JSON.stringify
    structuredClone

    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/111.0.0.0 Safari/537.36 Edg/111.0.1661.44
Chrome 111 on Windows
View result in a separate tab
Test name Executions per second
JSON.stringify 951558.0 Ops/sec
structuredClone 9043959.0 Ops/sec