{"ScriptPreparationCode":"var arr = Array(10000).fill(null).map((_, index) =\u003E index);\r\n\r\n","TestCases":[{"Name":"Array.from","Code":"const newArr1 = Array.from({ length: 10_000 }).map((_, index) =\u003E index);","IsDeferred":false},{"Name":"array destructure","Code":"const newArr2 = [...Array(10_000)].map((_, index) =\u003E index);","IsDeferred":false}]}