執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 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>