{"ScriptPreparationCode":null,"TestCases":[{"Name":"concat and re-assign","Code":"let params = [ \u0022hello\u0022, true, 7 ];\r\nconst addition = [1, 2, 3];\r\nparams = params.concat(addition);","IsDeferred":false},{"Name":"Spread and re-assign","Code":"let params = [ \u0022hello\u0022, true, 7 ];\r\nconst addition = [1, 2, 3]\r\nparams = [ ...params, ...addition ]","IsDeferred":false},{"Name":"Push with spread","Code":"const params = [ \u0022hello\u0022, true, 7 ];\r\nconst addition = [1, 2, 3]\r\nparams.push(...addition);","IsDeferred":false}]}