Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created August 17, 2023 17:08
Show Gist options
  • Select an option

  • Save Tynael/482a453bbe2bff9b5005d77d24c9df0f to your computer and use it in GitHub Desktop.

Select an option

Save Tynael/482a453bbe2bff9b5005d77d24c9df0f to your computer and use it in GitHub Desktop.
Detect User's Browser and Operating System Using JavaScript
navigator.userAgentData
// Returns
{
"brands": [
{
"brand": "Chromium",
"version": "116"
},
{
"brand": "Not)A;Brand",
"version": "24"
},
{
"brand": "Brave",
"version": "116"
}
],
"mobile": false,
"platform": "Windows"
}
@Tynael
Copy link
Author

Tynael commented Aug 17, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment