當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JavaScript | 声明数组并在每个循环中使用的代码
生活随笔
收集整理的這篇文章主要介紹了
JavaScript | 声明数组并在每个循环中使用的代码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Declare an array and we have to print its elements/items using for each loop in JavaScript.
聲明一個數組,我們必須使用JavaScript中的每個循環來打印其元素/項目。
Code:
碼:
<html><head><script>var fruits = ["apple","mango","banana","grapes","guava"];</script></head><body><script>document.write("<h3>Array : Type 2</h3>")document.write("<hr />");document.write("<ul>");fruits.forEach(function(item){document.write("<li>"+item+"</li>");}); document.write("</ul>");</script></body> </html>Output
輸出量
翻譯自: https://www.includehelp.com/code-snippets/code-to-declare-an-array-and-print-using-for-each-loop-in-javascript.aspx
總結
以上是生活随笔為你收集整理的JavaScript | 声明数组并在每个循环中使用的代码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 16位的数字高字节和低字节_显示8位数字
- 下一篇: 地下城大转移之后把任务清完,加了多少属性