<html>
<body>
<h1>The 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>
document.getElementById("demo").innerHTML =
"navigator.appName is " + navigator.appName;
</script>
</body>
</html>