本文介绍了如何在JavaScript中迭代数组和对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! var points = [{ x: 75, y: 25},{ x: 75+0.0046, y: 25}];我将如何迭代这一点。 我想首先打印x和y值,然后打印第二个和soo ....How would I iterate through this.I want to print x and y value first, then 2nd and soo on....推荐答案使用 Array#forEach 方法。var points = [{ x: 75, y: 25}, { x: 75 + 0.0046, y: 25}];points.forEach(function(obj) { console.log(obj.x, obj.y);}) 这篇关于如何在JavaScript中迭代数组和对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-22 16:08