{"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":"Object.assign","Code":"const obj2 = Object.assign({}, obj);","IsDeferred":false},{"Name":"Destructure","Code":"const obj3 = {...obj};","IsDeferred":false}]}