{"ScriptPreparationCode":"\r\nconst array = Array.from({length: 10_000}, (_, i) =\u003E i)","TestCases":[{"Name":"for of","Code":"for (const el of array) console.log(el)","IsDeferred":false},{"Name":"for loop","Code":"for (let i = 0; i \u003C array.length; i\u002B\u002B) console.log(array[i])","IsDeferred":false},{"Name":"forEach","Code":"array.forEach((el) =\u003E console.log(el))","IsDeferred":false}]}