{"ScriptPreparationCode":"const largeArray = new Array(200000).fill(0); \r\nconst step = 10\r\nlet copy = [...largeArray]","TestCases":[{"Name":"slice","Code":"for(let i=0; i\u003ClargeArray.length; i\u002B=step){\r\n let temp = largeArray.slice(i, i\u002Bstep)\r\n}","IsDeferred":false},{"Name":"splice","Code":"for(let i=0; copy.length \u003E 0; i\u002B\u002B){\r\n let temp = copy.splice(0, step)\r\n}","IsDeferred":false}]}