gpt4 book ai didi

javascript - 如何向数组添加新元素而不覆盖第一个元素?

转载 作者:行者123 更新时间:2023-11-28 17:28:11 25 4
gpt4 key购买 nike

我正在尝试向数组添加新元素,但它不断覆盖第一个元素,我不确定我是否正确执行,但这是我的代码:

//name and age contains value from a NgModel 
this.data = [
{ "name": this.name, "age": this.age },
];

//Adds them to a new array
this.nArray = [];
this.nArray.push(this.data);

最佳答案

当您想要合并两个数组时,请使用 concat。

const nArray = [];
const arr = nArray.concat(this.data);

您现在可以将新的合并数组用于您的目的

关于javascript - 如何向数组添加新元素而不覆盖第一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51069655/

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