Skip to content

Instantly share code, notes, and snippets.

@DeflateAwning
Last active December 5, 2025 20:56
Show Gist options
  • Select an option

  • Save DeflateAwning/6c114abaa3f13c22ac96308c4c4d6106 to your computer and use it in GitHub Desktop.

Select an option

Save DeflateAwning/6c114abaa3f13c22ac96308c4c4d6106 to your computer and use it in GitHub Desktop.

Debugging Browser Locale Issues

Helpful JS Validations

// Diagnose
Intl.DateTimeFormat().resolvedOptions() // Lists the locale used to format dates.
new Date().toLocaleString() // Main date format things are returned as.

// These are normally correct. They show what languages are requested.
navigator.languages
navigator.language

// Sanity checks:
new Date().toLocaleDateString("en-CA")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment