运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Typed Arrays</h1> <h2>The some() Method</h2> <p>Does the array contain a value over 18?</p> <p id="demo"></p> <script> const myArr = new Int16Array(10); myArr.fill(10); document.getElementById("demo").innerHTML = myArr.some(check); function check(x) { return x > 18; } </script> </body> </html>