Skip to content

Instantly share code, notes, and snippets.

@kamilklkn
Created January 26, 2021 23:05
Show Gist options
  • Save kamilklkn/44d2b194c5db6814890d4556a3ff09ed to your computer and use it in GitHub Desktop.
Save kamilklkn/44d2b194c5db6814890d4556a3ff09ed to your computer and use it in GitHub Desktop.
Browser silini algılama
const detectLanguage = (defaultLang = 'en-US') =>
navigator.language ||
(Array.isArray(navigator.languages) && navigator.languages[0]) ||
defaultLang;
ÖRNEKLER
detectLanguage(); // 'nl-NL'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment