{"ScriptPreparationCode":null,"TestCases":[{"Name":"spread operator","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [ ...params, ...[\u0022new\u0022, false, 3] ]","IsDeferred":false},{"Name":"Push","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nparams.push(...[\u0022new\u0022, false, 3]);","IsDeferred":false},{"Name":"concatenation","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar another = [\u0022new\u0022, false, 3];\r\nparams.concat(another);","IsDeferred":false}]}