{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"var params = [ \u0022hello\u0022, true, 7 ];\r\nvar other = [ 1, 2 ].concat(params);\r\n\r\nfor (let i = 0; i \u003C 10_000; i \u002B= 3) {\r\n other = other.concat([i, i \u002B 1, i \u002B 2]);\r\n}","IsDeferred":false},{"Name":"spread operator","Code":"var params = [ \u0022hello\u0022, true, 7 ]\r\nvar other = [ 1, 2, ...params ]\r\n\r\nfor (let i = 0; i \u003C 10_000; i \u002B= 3) {\r\n other = [...other, i, i \u002B 1, i \u002B 2];\r\n}","IsDeferred":false}]}