运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Typed Arrays</h1> <h2>The of() Method</h2> <p id="demo"></p> <script> const myArr = Int32Array.of(1,2,3,4,5,6) document.getElementById("demo").innerHTML = myArr; </script> </body> </html>