{"ScriptPreparationCode":"var array = Array.from({length: 100}).map(el =\u003E Math.floor(Math.random() * 1000))\r\nvar t;","TestCases":[{"Name":"for","Code":"for (let i = 0; i \u003C array.length; i\u002B\u002B) {\r\n t = array[i] * 2;\r\n}","IsDeferred":false},{"Name":"foreach","Code":"array.forEach(function(v, i) {\r\n t = v * 2;\r\n});","IsDeferred":false},{"Name":"for..of","Code":"for (var v of array) {\r\n t = v * 2;\r\n}","IsDeferred":false},{"Name":"for..of over entries","Code":"for (var [i, v] of array.entries()) {\r\n t = v * 2;\r\n}","IsDeferred":false}]}