{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object.assign","Code":"const acc = {a : [2,1], b: [1,3], c: [12, 23], d: [5,6]};\r\nconst newValue = { e: [3,4]};\r\nreturn Object.assign(acc, newValue);","IsDeferred":false},{"Name":"spread operator","Code":"const acc = {a : [2,1], b: [1,3], c: [12, 23], d: [5,6]};\r\nconst newValue = { e: [3,4]};\r\nreturn { ...acc, ...newValue };","IsDeferred":false}]}