TypeError:无法读取属性" 0"来自undefined。 (第7行,文件"代码")

时间:2017-10-28 06:41:42

标签: javascript google-apps-script

我尝试运行以下代码但收到错误。任何人都可以帮我找到错误。谢谢。

function hcSum(data) {

  var total=0;
  for (var i=0; i<data[0].length; i=i+2) {
    total = total + parseInt(data[0][i]);
  }

  return total;
}

0 个答案:

没有答案