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