运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>The forEach() Method</h2> <p>Call a function once for each array element:</p> <p id="demo"></p> <script> const numbers = [45, 4, 9, 16, 25]; let txt = ""; numbers.forEach(myFunction); document.getElementById("demo").innerHTML = txt; function myFunction(value, index, array) { txt += value + "<br>"; } </script> </body> </html>