{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"Object","Code":"const OBJECT = {\r\n FIRST: \u0022first\u0022,\r\n SECOND: \u0022second\u0022,\r\n THIRD: \u0022third\u0022,\r\n};\r\n\r\nconst perform = (item) =\u003E item;\r\n\r\nfor (let i = 0; i\u003C 10_000; i\u002B\u002B) {\r\n perform(OBJECT.first);\r\n perform(OBJECT.second);\r\n perform(OBJECT.third);\r\n}","IsDeferred":false},{"Name":"Dictionary","Code":"const proxy = new Proxy({}, { get: (_, p) =\u003E p });\r\n\r\nconst Dictionary = function () {\r\n return proxy;\r\n};\r\n\r\n\r\nconst DICTIONARY = new Dictionary();\r\n\r\nconst perform = (item) =\u003E item;\r\n\r\nfor (let i = 0; i\u003C 10_000; i\u002B\u002B) {\r\n perform(DICTIONARY.first);\r\n perform(DICTIONARY.second);\r\n perform(DICTIONARY.third);\r\n}","IsDeferred":false}]}