Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Window Navigator Object</h1>
<h2>The appName Property</h2>
<p>The appName property is removed (deprecated) in the latest web standard.
Most browsers (Chrome, Edge, Firefox, Safari) returns Netscape as the appName:</p>
<p id="demo"></p>
<script>
let browser = navigator.appName;
document.getElementById("demo").innerHTML = "Browser Name: " + browser;
</script>
</body>
</html>