{"ScriptPreparationCode":null,"TestCases":[{"Name":"concat","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ].concat(params);","IsDeferred":false},{"Name":"spread","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ].concat(params);","IsDeferred":false},{"Name":"push","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ].push(...params);","IsDeferred":false},{"Name":"push fn","Code":"const push = (arr, items) =\u003E {\r\n arr.push(...items);\r\n return arr\r\n}\r\n\r\nvar params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = push([1,2], params);","IsDeferred":false}]}