{"ScriptPreparationCode":"const arrNested = Array.from(Array(1000).keys());\r\nconst arr = new Array(1000).fill(null).map((item) =\u003E ({\r\n\tnested: [...arrNested],\r\n}));","TestCases":[{"Name":"spread","Code":"const resultSpread = [];\r\narr.forEach((item) =\u003E {\r\n\tresultSpread.push(...item.nested);\r\n});","IsDeferred":false},{"Name":"forEach push","Code":"const resultNestedLoop = [];\r\narr.forEach((item) =\u003E {\r\n\titem.nested.forEach((nestedItem) =\u003E resultNestedLoop.push(nestedItem));\r\n});\r\n","IsDeferred":false}]}