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