运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Arrays</h2> <p>The length property returns the length of an array.</p> <p id="demo"></p> <script> const myArray = [50,60,70,80,90,100,110,120,130,140,150]; document.getElementById("demo").innerHTML = myArray.length; </script> </body> </html>