{"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.obj = {};\r\n\r\nfor (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n\twindow.obj[makeid()] = makeid();\r\n}\r\n\r\n","TestCases":[{"Name":"entries","Code":"const len = Object.entries(window.obj).length;","IsDeferred":false},{"Name":"Values","Code":"const len = Object.values(window.obj).length;","IsDeferred":false},{"Name":"Keys","Code":"const len = Object.keys(window.obj).length;","IsDeferred":false},{"Name":"Array.from","Code":"const len = Array.from(window.obj).length;","IsDeferred":false}]}