{"ScriptPreparationCode":"function createBigObject(depth) {\r\n const obj = {};\r\n for (let i = 0; i \u003C 5000; i\u002B\u002B) {\r\n obj[i \u002B Math.floor(Math.random() * 10000)] = {\r\n [Math.random() * 10000]: Math.random() * 10000,\r\n };\r\n }\r\n return obj;\r\n}\r\nvar bigObj = createBigObject()\r\nvar clone;","TestCases":[{"Name":"JSON","Code":"clone = JSON.parse(JSON.stringify(bigObj))","IsDeferred":false},{"Name":"structuredClone","Code":"clone = structuredClone(bigObj)","IsDeferred":false}]}