什么是Javascript中的方法(或方法的组合),它将遍历数组的元素,并且除了对数组的元素进行操作外,还允许我使用当前元素的索引号?
在ruby中,这相当于以下内容:
array.each_with_index{ |element,index| element.method(index) }
解决方法:
对于数组([1、2、3]),可以使用.forEach
array.forEach(function (element, index) {
});
对于对象({a:1,b:2,c:3}),可以将.forEach与Object.keys组合使用
Object.keys(obj).forEach(function (key) {
var value = obj[key];
});