{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var other = [ 1, 2 ];\r\nvar params = [ \u0022hello\u0022, true, 7 ];\r\nother = other.concat(params);","IsDeferred":false},{"Name":"spread operator","Code":"var other = [ 1, 2 ];\r\nvar params = [ \u0022hello\u0022, true, 7 ]\r\nother = [ ...other, ...params ]","IsDeferred":false},{"Name":"Push","Code":"var other = [ 1, 2 ];\r\nvar params = [ \u0022hello\u0022, true, 7 ];\r\nother.push(...params);","IsDeferred":false}]}