{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2,3,4,5,6,7,8,9,10,11,23,23,23,23,23,23,23,23,12,12,22,234,232,23,23,232,23,2321,131,21 ]\r\nvar concat = other.concat(params);","IsDeferred":false},{"Name":"spread operator","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [ 1, 2,3,4,5,6,7,8,9,10,11,23,23,23,23,23,23,23,23,12,12,22,234,232,23,23,232,23,2321,131,21 ];\r\nvar some = [...other, ...params]","IsDeferred":false},{"Name":"Push","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2,3,4,5,6,7,8,9,10,11,23,23,23,23,23,23,23,23,12,12,22,234,232,23,23,232,23,2321,131,21 ];\r\nother.push(...params);","IsDeferred":false}]}