{"ScriptPreparationCode":"const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];","TestCases":[{"Name":"slice","Code":"const copy = data.slice(3, 8)\r\nconst copy2 = data.slice(0, 3)","IsDeferred":false},{"Name":"for loop","Code":"const copy = [];\r\nconst copy2 = [];\r\n\r\nfor(let i = 0; i \u003C data.length; i\u002B\u002B) {\r\n \tif (i \u003E=3 ) {\r\n copy.push(data[i]);\r\n } else {\r\n copy2.push(data[i]);\r\n };\r\n};","IsDeferred":false},{"Name":"forEach","Code":"const copy = [];\r\nconst copy2 = [];\r\n\r\ndata.forEach((el, i) =\u003E {\r\n \tif (i \u003E=3 ) {\r\n copy.push(el);\r\n } else {\r\n copy2.push(el);\r\n };\r\n});","IsDeferred":false}]}