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