gpt4 book ai didi

javascript - 通过函数参数更改数组

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

我需要将数组更改为在函数内创建的新数组。

function changeArr(a)
{
a=["hello"]; // don't work
//a.push("hello"); //works, but the real array pretty big (dont want copy)
}

var arr=[];

changeArr(arr);

console.log(arr); // should echo ["hello"]

最佳答案

看来您真正想做的就是在附加到它之前清除传递到函数中的数组:

function changeArr(a)
{
a.length = 0; // clear the array here if you don't care about the prev. contents
a.push("hello"); // this adds to the array that was passed in
}

关于javascript - 通过函数参数更改数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20873366/

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