{"ScriptPreparationCode":null,"TestCases":[{"Name":"Assign","Code":"const obj = {a: { value: true, d: { hello: true } }, b: true, c: \u0027hello\u0027 };\r\nconst a = obj.a;\r\nconst b = obj.b;\r\nconst c = obj.c;\r\nconst d = a.d;\r\n\r\nconsole.log(a);\r\nconsole.log(b);\r\nconsole.log(c);\r\nconsole.log(d);","IsDeferred":false},{"Name":"Destructure","Code":"const obj = {a: { value: true, d: { hello: true } }, b: true, c: \u0027hello\u0027 };\r\nconst {a, b, c} = obj;\r\nconst { d } \t= a;\r\n\r\nconsole.log(a);\r\nconsole.log(b);\r\nconsole.log(c);\r\nconsole.log(d);","IsDeferred":false}]}