HTML DOM cpuClass Property

Definition and Usage

The cpuClass property can return the CPU level of the browser system.

Syntax

navigator.cpuClassd

Example

<html>
<body>
<script type="text/javascript">
document.write("<p>CPUClass: ")
document.write(navigator.cpuClass + "</p>")
</script>
</body>
</html>