{"ScriptPreparationCode":"var array = [];\r\nfor(let i = 0; i \u003C 10; i\u002B\u002B) {\r\n\tarray.push(i);\r\n}","TestCases":[{"Name":"for","Code":"for(let i = 0; i \u003C array.length; i\u002B\u002B) {\r\n\tlet el = array[i];\r\n}","IsDeferred":false},{"Name":"for of","Code":"for(let el of array) {\r\n\t\r\n}","IsDeferred":false},{"Name":"for each","Code":"array.forEach(el =\u003E {\r\n \r\n});","IsDeferred":false}]}