gpt4 book ai didi

javascript - javascript 的 func_get_args

转载 作者:行者123 更新时间:2023-11-30 06:56:36 27 4
gpt4 key购买 nike

如何在数组中获取 javascript 中的所有函数参数?

function(a, b, c){

// here how can I get an array of all the arguments passed to this function
// like [value of a, value of b, value of c]
}

最佳答案

你想要 arguments array 对象。

function x(a, b, c){
console.log(arguments); // [1,2,3]
}

x(1,2,3);

更新:arguments 实际上不是一个数组,它是一个“类数组对象”。要制作真正的数组,请执行以下操作:

var args = Array.prototype.slice.call(arguments);

关于javascript - javascript 的 func_get_args,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11106352/

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