{"ScriptPreparationCode":"var MyObject = {\r\n description: \u0027Creates a deep copy of source, which should be an object or an array.\u0027,\r\n myNumber: 123456789,\r\n myBoolean: true,\r\n jayson: {\r\n stringify: \u0027JSON.stringify() method converts a JavaScript value to a JSON string....\u0027,\r\n parse: \u0027JSON.parse() method parses a JSON string...\u0027\r\n }\r\n};\r\n\r\nvar myCopy = null;","TestCases":[{"Name":"JSON.stringify","Code":"var obj = {\r\n [Math.random(2000).toString()]: Math.random(2000).toString(),\r\n ...MyObject,\r\n [Math.random(2000).toString()]: Math.random(2000).toString(),\r\n};\r\nmyCopy = JSON.parse(JSON.stringify(obj));","IsDeferred":false},{"Name":"structuredClone","Code":"var obj = {\r\n [Math.random(2000).toString()]: Math.random(2000).toString(),\r\n ...MyObject,\r\n [Math.random(2000).toString()]: Math.random(2000).toString(),\r\n};\r\nmyCopy = structuredClone(obj);","IsDeferred":false}]}