JavaScript輸出數組的方法:1、使用「console.log(數組名)」輸出數組;2、利用for或for in語句循環輸出數組;3、利用forEach()遍歷數組,輸出數組元素;4、利用map()遍歷數組,輸出數組元素。
本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
方法1:直接利用console.log(陣列名稱)
var a = [5,10,20]; console.log(a);
方法2:利用for/for in迴圈輸出數組
var arr = [5,10,20]; for(var i=0;i<arr.length;i++){ console.log(arr[i]); }
var arr = [5,10,20]; for(var key in arr){ console.log(arr[key]); }
#方法3:forEach()遍歷數組,迴圈輸出數組
#var arr = [5,10,20]; function f(value) { console.log(value); } arr.forEach(f);
方法4:map()方遍歷數組,循環輸出數組
#var arr = [5,10,20]; function f(value) { return value; } var a=arr.map(f); console.log(a);
##
以上是JavaScript如何輸出一個陣列的全部元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!