{"ScriptPreparationCode":"const obj = {\r\n a: 1,\r\n b: \u00272\u0027,\r\n c: \u00273\u0027,\r\n};","TestCases":[{"Name":"delete","Code":"const objCopy = { ...obj };\r\ndelete objCopy.b;\r\ndelete objCopy.c;","IsDeferred":false},{"Name":"destructure rest","Code":"const { a, ...rest } = obj;","IsDeferred":false}]}