{"ScriptPreparationCode":"var arr = [];\r\nfor (var i = 0; i \u003C 10000; i\u002B\u002B) {\r\n arr[i] = {x: 4 \u002B i, y: \u0027test string\u0027 \u002B i, q: {z: \u0027\u0027 \u002B i}};\r\n}","TestCases":[{"Name":"for","Code":"let x = 1;\r\nfor (let i = 0; i \u003C arr.length; \u002B\u002Bi) {\r\n x = arr[i];\r\n}","IsDeferred":false},{"Name":"forEach","Code":"let x = 1;\r\narr.forEach(el =\u003E x = el);","IsDeferred":false},{"Name":"for of","Code":"let x = 1;\r\nfor(el of arr) {\r\n x = el;\r\n}","IsDeferred":false}]}