{"ScriptPreparationCode":"const smol = 100000; // 100,000 (100 Thousand)\r\nconst meed = 10000000; // 10,000,000 (10 Million)\r\nconst beeg = 100000000; // 100,000,000 (100 Million)\r\n\r\nvar size = smol\r\n\r\nvar arr2 = [];\r\nfor (let ii = 0; ii \u003C size; ii \u002B= 1) { arr2.push(ii); }\r\n","TestCases":[{"Name":"Array.forEach (native)","Code":"let twice\r\narr2.forEach(function (el, index) {\r\n\ttwice = el * 2;\r\n});","IsDeferred":false},{"Name":"lodash _.each","Code":"let twice\r\n_.each(arr2, function (el, index) {\r\n\ttwice = el * 2;\r\n});","IsDeferred":false},{"Name":"Array.map (native, discarding result)","Code":"let twice\r\narr2.map(function (el, index) {\r\n\ttwice = el * 2;\r\n});","IsDeferred":false},{"Name":"lodash _.map (discarding result)","Code":"let twice\r\n_.map(arr2, function (el, index) {\r\n\ttwice = el * 2;\r\n});","IsDeferred":false},{"Name":"for loop (x of arr)","Code":"let twice\r\nfor (const el of arr2) {\r\n\ttwice = el * 2;\r\n}","IsDeferred":false},{"Name":"for loop (indexed)","Code":"let twice\r\nfor (let ii = 0; ii \u003C arr2.length; ii \u002B= 1) {\r\n\ttwice = arr2[ii] * 2;\r\n}","IsDeferred":false}]}