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