gpt4 book ai didi

javascript - TypeError: this.reduce 不是一个函数

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:47:13 26 4
gpt4 key购买 nike

<分区>

将方法添加到 Array 原型(prototype)后,其他一些不相关的脚本中断。

  • [Opera] 未处理的错误:“this.reduce”不是一个函数
  • [Firefox] TypeError: this.reduce 不是一个函数

该方法本身有效([1,2,3].xintsum() 按预期输出 6)。

// adding a function to the Array prototype
Array.prototype.xintsum = function() { return this.reduce(function(old, add) {return old + add;}, 0); };

// accessing the array in a way that worked before
$(document).ready(function (){
var some_array = [];
for (head_n in some_array) {
var v = some_array[head_n];
$('<th></th>').text(v);
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com