Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Navigator Object</h1>
<h2>The platform Property</h2>
<p>The platform property returns the browser platform (operating system):</p>
<p id="demo"></p>
<p>This property is removed (deprecated) in the latest web standard.
Do not rely on platform to return the correct browser platform in all browsers.</p>
<script>
document.getElementById("demo").innerHTML = 
"navigator.platform is " + navigator.platform;
</script>
</body>
</html>