{"ScriptPreparationCode":"var obj = {a: \u0022hello\u0022, c: \u0022test\u0022, po: 33, arr: [1, 2, 3, 4], anotherObj: {a: 33, str: \u0022whazzup\u0022}};","TestCases":[{"Name":"JSON stringify and parse","Code":"const obj1 = JSON.parse(JSON.stringify(obj));","IsDeferred":false},{"Name":"structuredClone","Code":"const obj2 = structuredClone(obj);","IsDeferred":false},{"Name":"Destructuring and Restructuring","Code":"const obj3 = { ...obj };","IsDeferred":false}]}