{"ScriptPreparationCode":"start = 0\r\nstop = 10000\r\nx = []\r\n\r\nfor(var i = 0; i \u003C 10000; i\u002B\u002B) {\r\n x.push(i)\r\n}","TestCases":[{"Name":"Push single","Code":"y = []\r\n\r\nx.forEach(e =\u003E y.push(e))","IsDeferred":false},{"Name":"Push spread","Code":"y = []\r\n\r\ny = y.push(...x)","IsDeferred":false},{"Name":"Total spread","Code":"y = []\r\n\r\ny = [...y, ...x]","IsDeferred":false}]}