{"ScriptPreparationCode":"const objects = Array.from({ length: 1000 }, () =\u003E ({}));","TestCases":[{"Name":"for","Code":"for (let i = 0, len = objects.length; i \u003C len; i\u002B\u002B) {\r\n objects[i].prop = \u0027erty\u0027;\r\n}","IsDeferred":false},{"Name":"foreach","Code":"objects.forEach(function(i) {\r\n i.prop = \u0027erty\u0027;\r\n});","IsDeferred":false},{"Name":"for in","Code":"for (let i in objects) {\r\n objects[i].prop = \u0027erty\u0027;\r\n}","IsDeferred":false},{"Name":"for..of","Code":"for (let i of objects) {\r\n i.prop = \u0027erty\u0027;\r\n}","IsDeferred":false}]}