{"ScriptPreparationCode":"const obj = {\r\n a:1,\r\n b:2,\r\n c:3\r\n}","TestCases":[{"Name":"a","Code":"const copyWithoutA = Object.assign({}, obj); delete copyWithoutA.a","IsDeferred":false},{"Name":"b","Code":"const { a, ...copyWithoutA } = obj","IsDeferred":false},{"Name":"c","Code":"const copyWithoutA = { ...obj }\r\ndelete copyWithoutA.a","IsDeferred":false},{"Name":"d","Code":"const copyWithoutA = JSON.parse(JSON.stringify(obj));\r\ndelete copyWithoutA.a","IsDeferred":false}]}