{"ScriptPreparationCode":null,"TestCases":[{"Name":"ES 6 Spread, combining objects","Code":"const a = { b: \u0027c\u0027, d: \u0027e\u0027, f: \u0027g\u0027 }\r\nconst b = { c: \u0027d\u0027, e: \u0027f\u0027, g: \u0027h\u0027 }\r\nconst c = { ...a, ...b }","IsDeferred":false},{"Name":"Object.assign, combining objects","Code":"const a = { b: \u0027c\u0027, d: \u0027e\u0027, f: \u0027g\u0027 }\r\nconst b = { c: \u0027d\u0027, e: \u0027f\u0027, g: \u0027h\u0027 }\r\nconst c = Object.assign({}, a, b)","IsDeferred":false},{"Name":"ES 6 Spread, cloning objects","Code":"const a = { b: \u0027c\u0027, d: \u0027e\u0027, f: \u0027g\u0027, g: \u0027h\u0027, i: \u0027j\u0027, j: \u0027k\u0027 }\r\nconst b = { ...a }","IsDeferred":false},{"Name":"Object.assign, cloning objects","Code":"const a = { b: \u0027c\u0027, d: \u0027e\u0027, f: \u0027g\u0027, g: \u0027h\u0027, i: \u0027j\u0027, j: \u0027k\u0027 }\r\nconst b = Object.assign({}, a)","IsDeferred":false}]}