Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Typed Arrays</h1>
<h2>The Uint8Array Object</h2>
<p id="demo"></p>
<script>
const myArr = new Uint8Array(10);
document.getElementById("demo").innerHTML = myArr;
</script>
</body>
</html>