{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object.assign","Code":"const acc= {a : [2]};\r\nconst newValue = { b: [3]};\r\nObject.assign(acc, newValue);\r\nreturn acc","IsDeferred":false},{"Name":"spread operator","Code":"const acc= {a : [2]};\r\nconst newValue = { b: [3]};\r\nreturn { ...acc, ...newValue };","IsDeferred":false}]}