gpt4 book ai didi

javascript - 在javascript中复制数组的自定义方法

转载 作者:行者123 更新时间:2023-11-30 07:20:12 25 4
gpt4 key购买 nike

如何在 javascript 中为数组创建一个函数,它将像这样工作:

const a = [1, 2, 3, 4, 5];
a.duplicate(); // 1, 2, 3, 4, 5, 1, 2, 3, 4, 5

最佳答案

尝试以下,使用 Array.push

const a = [1, 2, 3, 4, 5];
a.push(...a);
console.log(a);

或者可以添加一个原型(prototype)函数(Mutates Original)

const a = [1, 2, 3, 4, 5];
Array.prototype.duplicate = function(){
this.push(...this); // mutates the original array
}
a.duplicate();
console.log(a);

或者可以添加一个原型(prototype)函数(Creates New)

const a = [1, 2, 3, 4, 5];
Array.prototype.duplicate = function(){
return [...this, ...this]; // creates new
}
console.log(a.duplicate()); // duplicated array
console.log(a); // no change

关于javascript - 在javascript中复制数组的自定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50714032/

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