{"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":"double spread","Code":"var params1 = [ \u0022hello\u0022, true, 7 ]\r\nvar params2 = [ 1, false, \u002212\u0022 ]\r\nvar merged = [...params1, ...params2]","IsDeferred":false}]}