This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center。
6年前关闭。
我正在尝试在JSON数组的每个元素上应用javascript方法f(x,y)。
这是我的代码示例:
我在做什么错了?该代码无法正常工作。
6年前关闭。
我正在尝试在JSON数组的每个元素上应用javascript方法f(x,y)。
这是我的代码示例:
var jsonData = {"a":[1900,1910,1920,1930],"b":[12,19,8,55]}
for (var i=0; jsonData.a.length; i++){
f(jsonData.a[i],jsonData.b[i])
}
我在做什么错了?该代码无法正常工作。
最佳答案
您的代码进入无限循环。更改为
for (var i=0; i < jsonData.a.length; i++){