<html>
<body>
<h1>JavaScript Typed Arrays</h1>
<h2>The BYTES_PER_ELEMENT Property</h2>
<p>The number of bytes used to store one INT32Array element is:</p>
<p id="demo"></p>
<script>
const myArr = new Int32Array(10);
document.getElementById("demo").innerHTML = myArr.BYTES_PER_ELEMENT;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_typed_bytes by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:26 GMT -->
</html>