HTML DOM Navigator platform Property Last Updated : 14 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The Navigator platform property is used for returning the platform for which the browser is compiled. It returns a string representing the platform of the browser. The possible values are: MacIntelMacPPCMac68KWin32Win16SunOSHP-UXLinux i686etc Syntax navigator.platform Below program illustrates the Navigator platform Property :Checking the browser's platform. HTML <!DOCTYPE html> <html> <head> <title> Navigator platform Property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Navigator platform Property</h2> <p> For checking the browser's platform, double click the "Check Platform" button: </p> <button ondblclick="checkplatform()"> Check Platform </button> <p id="plat"></p> <script> function checkplatform() { var p = "Browser's Platform : " + navigator.platform; document.getElementById("plat").innerHTML = p; } </script> </body> </html> Output: Before clicking the button: After clicking the button: Supported Browsers: The browser supported by Navigator platform are listed below: Google Chrome 1Edge 12Internet Explorer 4Firefox 1Opera 12.1Safari 1 Comment More infoAdvertise with us Next Article HTML DOM Navigator platform Property S Shubrodeep Banerjee Follow Improve Article Tags : Web Technologies HTML HTML-Property Similar Reads HTML DOM Navigator product Property The Navigator product property is used for returning the browser's engine(product) name. It is a read-only property and generally returns "gecko" for most of the browsers. It returns a string representing the engine name of the browser. Syntax: navigator.productReturn Value: A String, representing t 1 min read HTML DOM Navigator onLine Property The Navigator onLine property is used for returning a Boolean value which specifies whether a browser is in the online or offline mode. It is a read-only property which returns true if the browser is in online mode or false if it is in the offline mode. Syntax: navigator.onLineReturn Value: A Boolea 2 min read HTML DOM Window navigator Property The HTML DOM Window navigator property is used to return a Navigator object. The navigator object contains information about the browser. This Navigator object contains methods and properties of the application which is run the script. Syntax: var nav = window.navigator; Return Value: A Navigator Ob 1 min read HTML DOM Navigator appName Property Navigator appName Property: It is used for returning the name of the browser.It is a read-only property and the values returned by it varies from browsers to browsers.it returns a string which represents the name of the browser.It returns "Netscape" for IE11, Firefox, Chrome, and Safari whereas, for 1 min read HTML DOM Navigator language Property The Navigator language property is used for returning the browser's language version. It is a read-only property and it returns a string representing the language version of the browser. Some of the possible language codes are : en-USfrende Syntax: navigator.language Below program illustrates the Na 1 min read Like