DEV Community

Carl Topham
Carl Topham

Posted on • Originally published at carl-topham.com on

Getting user locale with JavaScript

To get a user's prefered locale we can query the navigator.language.

const locale = navigator.language;
console.log(locale); // => "fr"

Enter fullscreen mode Exit fullscreen mode

To change your language in Chrome go to chrome://settings/languages and add/edit the list of languages.

To get the full list of user languages we can use navigator.languages. This returns an array of locales in order of preference.

console.log(navigator.languages); // => ["fr", "en", "en-US"]

Enter fullscreen mode Exit fullscreen mode

Note: The locale value from navigator.language is just the first item from the array of locales;

If you need this value on a server side JavaScript build such as Gatsby then remember that the node.js environment has no concept of the navigator so we need to check for it and specify a fallback when it doesn't exist.

const locale = (navigator && navigator.language) || "en";
console.log(locale); // Client => "fr"
console.log(locale); // Server => "en"

Enter fullscreen mode Exit fullscreen mode

We can then use this preference to format content such as dates, currency and time for users to their local preferences.

Top comments (0)