{"ScriptPreparationCode":"var list = [];\r\nfor (var i = 0; i \u003C 100000; i\u002B\u002B) {\r\n list.push(i);\r\n}","TestCases":[{"Name":"Slice","Code":"for (let i = 0; i \u003C list.length; i \u002B= 10) {\r\n const batch = list.slice(i, i \u002B 10);\r\n}","IsDeferred":false},{"Name":"Splice","Code":"while (list.length \u003E 0) {\r\n const batch = list.splice(0, 10);\r\n}","IsDeferred":false}]}