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