var dateStr = "2021-08-10";
var dateDate = new Date(dateStr);
var formatter = new Intl.DateTimeFormat("pt-PT");
const [yyyy, mm, dd] = dateStr.split("/");
const result =`${dd}/${mm}/${yyyy}`;
const result = new Date(dateStr).toLocaleString("pt-PT");
const day = dateStr.slice(8, 10);
const month = dateStr.slice(5, 7);
const year = dateStr.slice(0, 4);
const result = `${day}/${month}/${year}`
const day = dateStr.substring(8, 10);
const month = dateStr.substring(5, 7);
const year = dateStr.substring(0, 4);
const result = `${day}/${month}/${year}`
const result = new Intl.DateTimeFormat("pt-PT").format(new Date(dateStr));
const result = new Intl.DateTimeFormat("pt-PT").format(dateDate);
const result = formatter.format(new Date(dateStr));
const result = formatter.format(dateDate);
const result = dateDate.toLocaleString("pt-PT");
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
split | |
Date toLocaleString without date being cached | |
slice | |
substring | |
Intl no format cache no date cache | |
Intl no format cache with date cache | |
Intl with format cache no date cache | |
Intl with format cache with date cache | |
Date toLocaleString with date being cached |
Test name | Executions per second |
---|---|
split | 9663759.0 Ops/sec |
Date toLocaleString without date being cached | 5636.4 Ops/sec |
slice | 676450816.0 Ops/sec |
substring | 733038336.0 Ops/sec |
Intl no format cache no date cache | 6414.0 Ops/sec |
Intl no format cache with date cache | 6546.7 Ops/sec |
Intl with format cache no date cache | 322170.4 Ops/sec |
Intl with format cache with date cache | 394237.5 Ops/sec |
Date toLocaleString with date being cached | 5870.1 Ops/sec |
The benchmark tests various methods of date manipulation and formatting in JavaScript, specifically comparing string manipulation techniques and date formatting methods for converting a date string into a different format. Here’s a breakdown of the different approaches tested, their pros and cons, and other considerations.
String Manipulation with split
const [yyyy, mm, dd] = dateStr.split("/");
String Manipulation with slice
const day = dateStr.slice(8, 10);
const month = dateStr.slice(5, 7);
const year = dateStr.slice(0, 4);
split
since there's no intermediate array created.split
for someone unfamiliar with slice
.String Manipulation with substring
const day = dateStr.substring(8, 10);
const month = dateStr.substring(5, 7);
const year = dateStr.substring(0, 4);
slice
, it allows efficient direct access to string portions.substring
can be slightly confusing due to its handling of parameters (it treats negative indices differently compared to slice
).Date Formatting with toLocaleString
const result = new Date(dateStr).toLocaleString("pt-PT");
Using Intl.DateTimeFormat
without caching
const result = new Intl.DateTimeFormat("pt-PT").format(new Date(dateStr));
Using Intl.DateTimeFormat
with caching
const formatter = new Intl.DateTimeFormat("pt-PT");
const result = formatter.format(new Date(dateStr));
From the provided benchmark results, the following observations can be made:
Fastest: The substring
and slice
methods proved to be the most performant, executing over 700 million times per second on the tested environment. This demonstrates the efficiency of directly accessing string parts compared to date manipulation functions.
Slowest: The Intl.DateTimeFormat
methods, particularly when not using caching, showed significantly lower execution rates (thousands of executions per second). This indicates that while they provide flexibility and convenience for localization, they may not be optimal for high-performance scenarios.
Readability vs. Performance: For many developers, readability often takes precedence over raw performance. While substring
and slice
are more performant, split
is often clearer, especially for those who are new to the language.
Locale Requirements: It is vital to choose the right method based on the application requirements—if internationalization (i18n) is essential, using Intl.DateTimeFormat
becomes more favorable despite its lower performance.
Caching Mechanisms: By caching the Intl.DateTimeFormat
instance, performance can be significantly enhanced in scenarios involving numerous date manipulations.
Other alternatives for date formatting in JavaScript include:
Third-party libraries such as Moment.js, date-fns, or Luxon that provide additional functionality, such as time zone support and more sophisticated date manipulation.
Native Date Object Methods: Combining various Date methods, though less flexible than Intl.DateTimeFormat
in terms of locale handling.
Ultimately, the choice of method will depend on the specific context, balancing performance, readability, and functionality based on the needs of the project.