我有一些jquery代码,我正在尝试重写为基本的javascript。
问题是我有这个多维数组而且我不确定如何为此编写for循环?
$.each(wordcount, function(w, i) {
if (i > 1) {
constrain++;
if (constrain <= 2) {
topwords.push({
'word': w,
'freq': i
});
}
}
});
答案 0 :(得分:2)
您可以使用单个for
循环执行此操作:
for (var i = 0; i < wordcount.length; i++) {
var w = wordcount[i];
if (i > 1) {
constrain++;
if (constrain <= 2) {
topwords.push({
'word': w,
'freq': i
});
}
}
}
答案 1 :(得分:1)
我们在JS中有Array.prototype.forEach
方法。您可以像
wordcount.forEach(function(w, i) {
if (i > 1) {
constrain++;
if (constrain <= 2) {
topwords.push({
'word': w,
'freq': i
});
}
}
});