MDN은 다음과 같이 설명합니다.
인수는 배열과 유사한 객체입니다. 함수에 전달된 매개변수 목록을 나타냅니다.
먼저 예시를 통해 JavaScript의 인수가 어떤 모습인지 직관적으로 이해해 보겠습니다.
function printArgs() { console.log(arguments); } printArgs("A", "a", 0, { foo: "Hello, arguments" });
실행 결과는 다음과 같습니다.
["A", "a", 0, Object]
얼핏 결과는 배열이지만 실제 배열은 아니므로 인수는 배열과 유사한 객체입니다. 실제 배열과 배열 유사 객체 객체의 차이점은 끝까지 뒤집을 수 있습니다).
함수가 실행될 때 함수에 전달되는 모든 매개변수를 나타내는 인수로 표시되는 내용을 살펴보세요. 위의 예에서는 printArgs
함수에 전달된 4개의 매개변수를 나타냅니다. arguments[0]
, arguments[1]
...을 사용하여 단일 매개변수를 얻을 수 있습니다.
arguments는 length
속성을 포함하는 배열과 유사한 객체입니다. 함수에 전달된 매개변수입니다. arguments.length
function func() { console.log("The number of parameters is " + arguments.length); } func(); func(1, 2); func(1, 2, 3);
The number of parameters is 0 The number of parameters is 2 The number of parameters is 3
Array.prototype.slice.call(arguments);
[].slice.call(arguments);
const obj = { 0: "A", 1: "B", length: 2 }; const result = [].slice.call(obj); console.log(Array.isArray(result), result);
true ["A", "B"]
// Leaking arguments example1: function getArgs() { return arguments; } // Leaking arguments example2: function getArgs() { const args = [].slice.call(arguments); return args; } // Leaking arguments example3: function getArgs() { const args = arguments; return function() { return args; }; }
function getArgs() { const args = new Array(arguments.length); for(let i = 0; i < args.length; ++i) { args[i] = arguments[i]; } return args; }
function foo(a) { "use strict"; console.log(a, arguments[0]); a = 10; console.log(a, arguments[0]); arguments[0] = 20; console.log(a, arguments[0]); } foo(1);
1 1 10 1 10 20
function foo(a) { console.log(a, arguments[0]); a = 10; console.log(a, arguments[0]); arguments[0] = 20; console.log(a, arguments[0]); } foo(1);
1 1 10 10 20 20
function foo() { bar.apply(this, arguments); } function bar(a, b, c) { // logic }
function add(num1, num2) { console.log("Method one"); return num1 + num2; } function add(num1, num2, num3) { console.log("Method two"); return num1 + num2 + num3; } add(1, 2); add(1, 2, 3);
Method two Method two
function add(num1, num2, num3) { if (arguments.length === 2) { console.log("Result is " + (num1 + num2)); } else if (arguments.length === 3) { console.log("Result is " + (num1 + num2 + num3)); } } add(1, 2); add(1, 2, 3)
Result is 3 Result is 6
function func() { console.log(...arguments); } func(1, 2, 3);
1 2 3
function func(firstArg, ...restArgs) { console.log(Array.isArray(restArgs)); console.log(firstArg, restArgs); } func(1, 2, 3);
true 1 [2, 3]
function func(firstArg = 0, secondArg = 1) { console.log(arguments[0], arguments[1]); console.log(firstArg, secondArg); } func(99);
99 undefined 99 1
은 배열과 유사한 모든 객체를 배열로 변환할 수 있는 매우 권장되는 방법입니다. Array.from()
const obj = { 0: "a", 1: "b" }; const arr = [ "a", "b" ];
我们利用 obj[0]
、arr[0]
都能取得自己想要的数据,但取得数据的方式确实不同的。obj[0]
是利用对象的键值对存取数据,而arr[0]
却是利用数组的索引。事实上,Object 与 Array 的唯一区别就是 Object 的属性是 string,而 Array 的索引是 number。
下面看看类数组对象。
伪数组的特性就是长得像数组,包含一组数据以及拥有一个 length 属性,但是没有任何 Array 的方法。再具体的说,length 属性是个非负整数,上限是 JavaScript 中能精确表达的最大数字;另外,类数组对象的 length 值无法自动改变。
如何自己创建一个类数组对象?
function Foo() {} Foo.prototype = Object.create(Array.prototype); const foo = new Foo(); foo.push('A'); console.log(foo, foo.length); console.log("foo is an array? " + Array.isArray(foo));
执行结果是:
["A"] 1 foo is an array? false
也就是说 Foo 的示例拥有 Array 的所有方法,但类型不是 Array。
如果不需要 Array 的所有方法,只需要部分怎么办呢?
function Bar() {} Bar.prototype.push = Array.prototype.push; const bar = new Bar(); bar.push('A'); bar.push('B'); console.log(bar);
执行结果是:
Bar {0: "A", 1: "B", length: 2}
以上就是JavaScript arguments 对象详解的内容,更多相关内容请关注PHP中文网(www.php.cn)!