{"ScriptPreparationCode":"var myObject = {\r\n name: \u0027Jane Darlene\u0027,\r\n age: 25,\r\n score: 120,\r\n weight: 65.5,\r\n balabnce: 2000.0,\r\n premium: false,\r\n birthDate: \u00272024-10-02T03:23:58.663Z\u0027,\r\n testNull: null,\r\n title: \u0027Some other title\u0027,\r\n description: \u0027Some other description\u0027,\r\n address: {\r\n street: \u0027123 Main St\u0027,\r\n city: \u0027Anytown\u0027,\r\n state: \u0027NY\u0027,\r\n zip: 12345,\r\n country: \u0027USA\u0027,\r\n },\r\n additionalAddresses: [{\r\n street: \u0027456 Elm St\u0027,\r\n city: \u0027Anytown\u0027,\r\n state: \u0027NY\u0027,\r\n zip: 12345,\r\n country: \u0027USA\u0027,\r\n },\r\n {\r\n street: \u0027789 Oak St\u0027,\r\n city: \u0027Anytown\u0027,\r\n state: \u0027NY\u0027,\r\n zip: 12345,\r\n country: \u0027USA\u0027,\r\n },\r\n ],\r\n profile: {\r\n firstName: \u0027Jane\u0027,\r\n lastName: \u0027Darlene\u0027,\r\n },\r\n features: [\u0027One\u0027, \u0027Two\u0027, \u0027Three\u0027],\r\n favorites: [{\r\n slug: \u0027first\u0027,\r\n postname: \u0027First post\u0027\r\n },\r\n {\r\n slug: \u0027second\u0027,\r\n postname: \u0027Second post\u0027\r\n },\r\n ],\r\n todos: {\r\n 1: {\r\n id: 1,\r\n text: \u0027First todo\u0027,\r\n done: false\r\n },\r\n 2: {\r\n id: 2,\r\n text: \u0027Second todo\u0027,\r\n done: true\r\n },\r\n },\r\n};","TestCases":[{"Name":"structuredClone(myObject)","Code":"structuredClone(myObject);","IsDeferred":false},{"Name":"JSON.parse(JSON.stringify(myObject))","Code":"JSON.parse(JSON.stringify(myObject));","IsDeferred":false}]}