{"ScriptPreparationCode":"function makeid() {\r\n var text = \u0022\u0022;\r\n var possible = \u0022ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\u0022;\r\n\r\n for (var i = 0; i \u003C 5; i\u002B\u002B)\r\n text \u002B= possible.charAt(Math.floor(Math.random() * possible.length));\r\n\r\n return text;\r\n}\r\n\r\nwindow.parentObj = {};\r\n\r\nfor (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n\twindow.parentObj[makeid()] = makeid();\r\n}\r\n\r\n","TestCases":[{"Name":"Object.entries","Code":"\r\nObject.entries(window.parentObj).map(([id, name]) =\u003E {\r\n return {id, name}\r\n});","IsDeferred":false},{"Name":"Object.keys","Code":"Object.keys(window.parentObj).map(id =\u003E {\r\n const name = window.parentObj[id];\r\n\r\n return { id, name };\r\n});","IsDeferred":false}]}