{"ScriptPreparationCode":"const TWO_DIGIT = \u00272-digit\u0027;\r\n\r\nvar options = {\r\n month: TWO_DIGIT,\r\n year: \u0027numeric\u0027,\r\n day: TWO_DIGIT,\r\n hour: TWO_DIGIT,\r\n hour12: false,\r\n minute: TWO_DIGIT,\r\n second: TWO_DIGIT,\r\n }\r\n\r\nvar cached = new Intl.DateTimeFormat(\u0027en-US\u0027, options);","TestCases":[{"Name":"new Intl.DateTimeFormat.format()","Code":"new Intl.DateTimeFormat(\u0027en-US\u0027, options).format(new Date());","IsDeferred":false},{"Name":"cached Intl.DateTimeFormat.format()","Code":"cached.format(new Date());","IsDeferred":false},{"Name":"new Intl.DateTimeFormat.formatToParts","Code":"new Intl.DateTimeFormat(\u0027en-US\u0027, options).formatToParts(new Date());","IsDeferred":false},{"Name":"cached Intl.DateTimeFormat.formatToParts()","Code":"cached.formatToParts(new Date());","IsDeferred":false},{"Name":"date methods","Code":"new Date().toLocaleString(\u0027en-US\u0027, options);","IsDeferred":false}]}