Window navigator.appName
Example
Get browser name:
let browser = navigator.appName;
Try it Yourself »
More "Try it Yourself" examples below.
Description
The appName
property returns the browser name.
The appName
property is read-only.
Note
For compatibility reasons, all modern browsers returns "Netscape".
Syntax
navigator.appName
Return Value
Type | Description |
A string | The browser name. |
More Examples
Display all navigator properties:
let text = "<p>Browser CodeName: " + navigator.appCodeName + "</p>" +
"<p>Browser Name: " + navigator.appName + "</p>" +
"<p>Browser Version: " + navigator.appVersion + "</p>" +
"<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>" +
"<p>Browser Language: " + navigator.language + "</p>" +
"<p>Browser Online: " + navigator.onLine + "</p>" +
"<p>Platform: " + navigator.platform + "</p>" +
"<p>User-agent header: " + navigator.userAgent + "</p>";
Try it Yourself »
Browser Support
navigator.appName
is supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |