Javascript-關於for in和forEach
阿新 • • 發佈:2018-02-25
style 工程師 數組 log foreach function name gpo func
JS-for in:用來遍歷對象
1 //遍歷對象 for in 2 3 var opts={name:‘xiaofei‘,age:‘28歲‘,job:‘web前端工程師‘} 4 5 for (var k in opts) { 6 7 console.log(k+‘:‘+opts[k]) 8 9 } 10 //name:xiaofei 11 //age:28歲 12 //job:web前端
JS-forEach:用來遍歷數組
1 //遍歷數組 2 3 var arr=[1,2,3,4]; 4 arr.forEach(function(item,index,arr){5 console.log(‘當前項的值是:‘+item+‘,當前對應的索引值是:‘+index+‘,原數組是:‘+arr) 6 }) 7 //當前項的值是:1,當前項對應的索引值是:0,原數組是:1,2,3,4 8 //當前項的值是:2,當前項對應的索引值是:1,原數組是:1,2,3,4 9 //當前項的值是:3,當前項對應的索引值是:2,原數組是:1,2,3,4 10 //當前項的值是:4,當前項對應的索引值是:3,原數組是:1,2,3,4
Javascript-關於for in和forEach