我有一些jquery代码,我正在尝试将它们重新编写为基本javascript。

问题是我有这个多维数组,不确定如何为此编写for循环?

  $.each(wordcount, function(w, i) {
      if (i > 1) {
          constrain++;
          if (constrain <= 2) {
              topwords.push({
                  'word': w,
                  'freq': i
              });
          }
      }
  });

最佳答案

您可以使用单个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
            });
        }
    }
}

09-17 17:16