{"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 window.parentObj[makeid()] = makeid();\r\n}","TestCases":[{"Name":"Object.keys","Code":"const array = [];\r\nconst keys = Object.keys(window.parentObj);\r\nfor (const k of keys) {\r\n array.push(window.parentObj[k]);\r\n}","IsDeferred":false},{"Name":"Object.entries","Code":"const array = [];\r\nconst entries = Object.entries(window.parentObj);\r\nfor (const [k, v] of entries) {\r\n array.push(v);\r\n}","IsDeferred":false},{"Name":"Object.entries with map","Code":"const array = Object.entries(window.parentObj).map(([k, v]) =\u003E v);","IsDeferred":false}]}