用forEach遍历数组
实例
var arr = [125,'das',964,'php','javascript']; arr.forEach(function (value,index) { console.log('['+index+']'+value); })
运行实例 »
点击 "运行实例" 按钮查看在线实例
博客列表 >用forEach遍历数组-5-7作业,未完成
用forEach遍历数组
var arr = [125,'das',964,'php','javascript']; arr.forEach(function (value,index) { console.log('['+index+']'+value); })
点击 "运行实例" 按钮查看在线实例