{"ScriptPreparationCode":"var max = 10000000; // 10,000,000 (10 Million)\r\n\r\nvar arr = [];\r\nfor (var i = 0; i \u003C= max; i\u002B\u002B) { arr.push({value: 10}); }\r\n","TestCases":[{"Name":"lodash","Code":"_.each(arr, function (element, index) {\r\n\telement.value = element.value * 2;\r\n});","IsDeferred":false},{"Name":"native","Code":"for (const item of arr) {\r\n item.value = item.value *2;\r\n}","IsDeferred":false}]}