gpt4 book ai didi

javascript - 如何在不使用 arguments 属性的情况下找到参数数量?

转载 作者:行者123 更新时间:2023-11-29 18:26:03 27 4
gpt4 key购买 nike

鉴于此代码片段,我如何在不使用 myFunc 的 arguments 属性的情况下从函数中找到传递给函数的参数数量。

function myFunc() {
"use strict";
...
var j;
for (j = 0; j < myFunc.arguments.length; ++j) {
...
}
}

myFunc("some", "arguments", "here");

最佳答案

您不需要函数的 .arguments 属性。您还可以访问引用参数​​对象的 arguments 变量。

arguments.length

function myFunc() {
var j; // -------v---- no function reference needed
for (j = 0; j < arguments.length; ++j) {
// ...
}
}

关于javascript - 如何在不使用 arguments 属性的情况下找到参数数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13042874/

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