{"ScriptPreparationCode":"var obj = {\r\n\ta: 1,\r\n b: 2,\r\n\tc: 3,\r\n\td: 4,\r\n\t0: \u0027a\u0027,\r\n \t1: \u0027b\u0027,\r\n \tstr: \u0027long string\u0027,\r\n\tnested: {\r\n \tnested: 0\r\n },\r\n\thello: 55.5\r\n};","TestCases":[{"Name":"Object.entries forEach","Code":"for (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n Object.entries(obj).forEach(([key, value]) =\u003E console.log(key, value))\r\n}\r\n\r\n","IsDeferred":false},{"Name":"for..in","Code":"for (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n\tfor (const key in obj) {\r\n \tconsole.log(key, obj[key])\r\n } \r\n}","IsDeferred":false},{"Name":"for..in with Object.entries","Code":"for (let i = 0; i \u003C 10000; i\u002B\u002B) {\r\n\tfor (const [key, value] of Object.entries(obj)) {\r\n \tconsole.log(key, value)\r\n } \r\n}","IsDeferred":false}]}