<html>
<body>
<h1>JavaScript Typed Arrays</h1>
<h2>The Uint32Array Object</h2>
<p>Create a typed array of 10 unsigned 32-bit integers (unsigned long format):</p>
<p id="demo"></p>
<script>
const myArr = new Uint32Array(10);
document.getElementById("demo").innerHTML = "Array: " + myArr + "<br>Bytes per element: " + myArr.BYTES_PER_ELEMENT;
</script>
</body>
</html>