{"ScriptPreparationCode":null,"TestCases":[{"Name":"Intl","Code":"new Intl.NumberFormat(\u0027en-US\u0027, {\r\n style: \u0027decimal\u0027,\r\n minimumFractionDigits: 0,\r\n maximumFractionDigits: 3,\r\n }).format(\u0027100000.234\u0027)","IsDeferred":false},{"Name":"String","Code":"const value = \u0027100000.234\u0027;\r\n\r\n // fix for rounding issues, see Mozilla docs on method toFixed()\r\n const normalizedValue = value * 10 ** 3;\r\n const formattedValue = normalizedValue.toFixed(0);\r\n return \u002BformattedValue / 10 ** 3;","IsDeferred":false}]}