{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object.assign","Code":"var params = { b:\u0022hello\u0022, c: true, d:7 };\r\nvar other = Object.assign({ a: 2 }, params);","IsDeferred":false},{"Name":"spread operator","Code":"var params = { b:\u0022hello\u0022, c: true, d:7 };\r\nvar other = { a: 2, ...params };","IsDeferred":false},{"Name":"foreach","Code":"var params = [ [\u0022b\u0022, \u0022hello\u0022], [\u0022c\u0022, true], [\u0022a\u0022, 5] ];\r\n\r\nvar other = { a: 2 };\r\nparams.forEach(style =\u003E {\r\n other[style[0]] = style[1];\r\n});","IsDeferred":false}]}