{"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":"1 Dimensional loop","Code":"var params = { b:\u0022hello\u0022, c: true, d:7 };\r\nvar other = {}\r\nfor(var prop in params){\r\n\tother[prop] = params[prop]\r\n}\r\n","IsDeferred":false}]}