JavaScript中的小陷阱(不定期更新。。)
1.
var scores = [1, 2, 3]; var total = 0; for (var score in scores) { total += score; } var mean = total/score.length; console.log(mean);
输出结果是1还是4?
工作中遇到的比较容易出错、考验知识掌握程度的小问题,记录下来,不定期更新。。。
1.
var scores = [1, 2, 3]; var total = 0; for (var score in scores) { total += score; } var mean = total/score.length; console.log(mean);
输出结果是1还是4?
工作中遇到的比较容易出错、考验知识掌握程度的小问题,记录下来,不定期更新。。。