{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object.assign","Code":"var params = { b:\u0022hello\u0022, c: true, d:7 };\r\nvar newObj = { a: 2 };\r\nvar other = Object.assign({},newObj, params);","IsDeferred":false},{"Name":"spread operator","Code":"var params = { b:\u0022hello\u0022, c: true, d:7 };\r\nvar newObj = { a: 2 };\r\nvar other = { ...newObj, ...params };","IsDeferred":false}]}