{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object spread","Code":"const a = { x: 1, y: 2, z: 3 }\r\nconst b = { w: 4, u: 5, t: 6 }\r\nconst c = { ...a, ... b }","IsDeferred":false},{"Name":"Object.assign","Code":"const a = { x: 1, y: 2, z: 3 }\r\nconst b = { w: 4, u: 5, t: 6 }\r\nconst c = Object.assign({}, a, b)","IsDeferred":false}]}