Correction status:Uncorrected
Teacher's comments:
用forEach遍历数组
var arr = [125,'das',964,'php','javascript']; arr.forEach(function (value,index) { console.log('['+index+']'+value); })
点击 "运行实例" 按钮查看在线实例