{"ScriptPreparationCode":null,"TestCases":[{"Name":"concat","Code":"var params = new Array(1000);\r\nlet other = [];\r\nfor (let x = 0; x \u003C 100; \u002B\u002Bx) {\r\n other = other.concat(params);\r\n}","IsDeferred":false},{"Name":"push","Code":"var params = new Array(1000);\r\nlet other = [];\r\nfor (let x = 0; x \u003C 100; \u002B\u002Bx) {\r\n other.push(...params);\r\n}","IsDeferred":false},{"Name":"spread","Code":"var params = new Array(1000);\r\nlet other = [];\r\nfor (let x = 0; x \u003C 100; \u002B\u002Bx) {\r\n other = [...other, ...params];\r\n}","IsDeferred":false}]}