<html>
<body>
<h1>The Window Navigator Object</h1>
<h2>The product Property</h2>
<p>This property is removed (deprecated) in the latest web standard.
Most browsers returns <b>Gecko</b> as product name.</p>
<p id="demo"></p>
<script>
let browser = navigator.product;
document.getElementById("demo").innerHTML = "Browser product: " + browser;
</script>
</body>
</html>