{"ScriptPreparationCode":"var obj = {\r\n \u0027a\u0027: 1,\r\n \u0027b\u0027: 2,\r\n \u0027c\u0027: 3,\r\n \u0027d\u0027: 4,\r\n \u0027e\u0027: 5,\r\n \u0027f\u0027: 6,\r\n \u0027g\u0027: 7\r\n};","TestCases":[{"Name":"for-in","Code":"for (var i = 10000; i \u003E 0; i--) {\r\n for (var key in obj) {\r\n if (obj.hasOwnProperty(key)) {\r\n console.log(obj[key]);\r\n }\r\n }\r\n}","IsDeferred":false},{"Name":"Object.keys.forEach","Code":"for (var i=10000; i \u003E 0; i--) {\r\n Object.keys(obj).forEach(key =\u003E console.log(obj[key]));\r\n}","IsDeferred":false},{"Name":"Object.keys with for loop","Code":"for (var i=10000; i \u003E 0; i--) {\r\n for (var key of Object.keys(obj)) {\r\n \tconsole.log(obj[key]);\r\n }\r\n}","IsDeferred":false}]}