Returns a string representing the platform of the browser. The specification allows browsers to always return the empty string, so don't rely on this property to get a reliable answer.
platform = navigator.platform
A DOMString
. platform
is a string that must be an empty string or a string representing the platform on which the browser is executing.
For example: "MacIntel
", "Win32
", "FreeBSD i386
", "WebTV OS
"
console.log(navigator.platform);
On Firefox, unless your code is privileged (that is, running in chrome or at least has the UniversalBrowserRead
privilege), it may get the value of the general.platform.override
preference instead of the true platform.
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'NavigatorID.platform' in that specification. | Living Standard | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/navigatorID/platform