{"ScriptPreparationCode":null,"TestCases":[{"Name":"Cached","Code":"const NUMBER_GROUPING_FORMATTER = new Intl.NumberFormat(\r\n \u0027en-US\u0027, // Any country with thousand separator ,\r\n {\r\n style: \u0027decimal\u0027,\r\n useGrouping: true,\r\n },\r\n);\r\nfor (let i = 0; i \u003C 1_000; i\u002B\u002B) {\r\n NUMBER_GROUPING_FORMATTER.format(i)\r\n}","IsDeferred":false},{"Name":"Non cached","Code":"for (let i = 0; i \u003C 1000; i\u002B\u002B) {\r\n const NUMBER_GROUPING_FORMATTER = new Intl.NumberFormat(\r\n \u0027en-US\u0027, // Any country with thousand separator ,\r\n {\r\n style: \u0027decimal\u0027,\r\n useGrouping: true,\r\n },\r\n );\r\n NUMBER_GROUPING_FORMATTER.format(i)\r\n}","IsDeferred":false}]}