{"ScriptPreparationCode":"var list = [];\r\nfor (var i = 0; i \u003C 1000 * 1000; i\u002B\u002B) {\r\n list.push(i);\r\n}","TestCases":[{"Name":"splice","Code":"for (var i = 0; i \u003C 100; i\u002B\u002B) {\r\n list.push(i);\r\n}\r\nvar spliceTemp = list.splice(0, 100)","IsDeferred":false},{"Name":"slice","Code":"for (var i = 0; i \u003C 100; i\u002B\u002B) {\r\n list.push(i);\r\n}\r\nvar sliceTemp = list.slice(0, 100)\r\nlist = list.slice(100)","IsDeferred":false}]}