Latest web development tutorials

Navigator appVersion property

Navigator Object Reference Navigator Objects

Definition and Usage

appVersion property returns the browser platform and version information. This property is a read-only string.

grammar

navigator.appVersion


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support appVersion property


Examples

Examples

Returns the browser version:

<script>

document.write("版本信息: " + navigator.appVersion);

</script>

Examples of the above output:


try it"


Examples

More examples

This example contains all the properties of navigator


Navigator Object Reference Navigator Objects