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