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