1. 什麼是 arguments
MDN 上解釋:
arguments 是一個類別陣列物件。代表傳給一個function的參數清單。
我們先用一個範例直觀了解下 JavaScript 中的 arguments 長什麼樣子。
function printArgs() { console.log(arguments); } printArgs("A", "a", 0, { foo: "Hello, arguments" });
執行結果是:
["A", "a", 0, Object]
乍一看,結果是個數組,但並不是真正的數組,所以說arguments 是一個類數組的對象(想了解真正數組與類數組對象的區別可以一直翻到最後)。
再看看 arguments 表示的內容,其表示了函數執行時傳入函數的所有參數。在上面的例子中,代表了傳入 printArgs 函數中的四個參數,可以分別用 arguments[0]、 arguments[1]... 來取得單一的參數。
2. arguments 操作
2.1 arguments length
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
2.2 arguments 轉數組
通常使用下面的方法來將arguments 轉換成數組:
Array.prototype.slice.call(arguments);
還有一個更簡短的寫法:
rr空數組的slice 方法,而沒有從Array 的原型層面呼叫。 為什麼上面兩種方法可以轉換呢?首先,slice 方法得到的結果是一個數組,參數就是 arguments。事實上,滿足一定條件的物件都能被 slice 方法轉換成陣列。看個例子:[].slice.call(arguments);執行結果是:
const obj = { 0: "A", 1: "B", length: 2 }; const result = [].slice.call(obj); console.log(Array.isArray(result), result);從上面例子可以看出,條件就是: 1) 屬性為0,1,2...;2) 具有length 屬性;另外,有一個需要注意的地方就是,不能將函數的arguments 洩漏或傳遞出去。什麼意思呢?看下面的幾個洩漏 arguments 的例子:
true ["A", "B"]上面的做法就直接將函數的 arguments 對象洩露出去了,最終的結果就是 V8 引擎將會跳過優化,導致相當大的性能損失。 你可以這麼做:
// 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; }; }那就很好奇了,我們每次使用arguments 時通常第一步都會將其轉換為數組,同時arguments 使用不當還容易導致性能損失,那麼為什麼不將arguments 直接設計成數組物件呢?這需要從這門語言的一開始說起。 arguments 在語言的早期就引入了,當時的 Array 物件有 4 個方法: toString、 join、 reverse 和 sort。 arguments 繼承於 Object 的很大原因是不需要這四個方法。而現在,Array 增加了許多強大的方法,像是 forEach、map、filter 等等。那為什麼現在不在新的版本裡讓 arguments 重新繼承自 Array呢?其實 ES5 的草案中就包含這一點,但為了向前兼容,最終還是被委員會否決了。 2.3 修改 arguments 值在嚴格模式與非嚴格模式下,修改函數參數值表現的結果不一樣。看下面的兩個例子:
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);從上面的兩個例子中可以看出,在嚴格模式下,函數中的參數與arguments 物件沒有聯繫,修改一個值不會改變另一個值。而在非嚴格模式下,兩個會互相影響。 2.4 將參數從一個函數傳遞到另一個函數下面是將參數從一個函數傳遞到另一個函數的建議做法。
1 1 10 10 20 202.5 arguments 與重載很多語言中都有重載,但 JavaScript 中沒有。先看個例子:
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);所以,JavaScript 中,函數並沒有根據參數的不同而產生不同的呼叫。 是不是 JavaScript 中就沒有重載了呢?並不是,我們可以利用 arguments 模擬重載。還是上面的例子。
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)3. ES6 中的arguments3.1 擴充運算子直接上栗子:
Result is 3 Result is 6執行結果是:
直接上栗子:
function func() { console.log(...arguments); } func(1, 2, 3);
執行結果是:
直接上栗子:1 2 3執行結果是:獨立的參數。 3.2 Rest 參數還是上栗子:
function func(firstArg, ...restArgs) { console.log(Array.isArray(restArgs)); console.log(firstArg, restArgs); } func(1, 2, 3);執行結果是:
true 1 [2, 3]從上面的結果可以看出,Rest 參數表示除了明確指定剩餘的參數集合,類型是 Array。 3.3 預設參數栗子:
function func(firstArg = 0, secondArg = 1) { console.log(arguments[0], arguments[1]); console.log(firstArg, secondArg); } func(99);執行結果是:
99 undefined 99 1可見,預設參數對 arguments 沒有影響,arguments 還是僅表示調用函數時所傳入的所有參數。 3.4 arguments 轉數組Array.from() 是個非常推薦的方法,其可以將所有類別數組物件轉換成陣列。 4. 陣列與類別數組物件數組具有一個基本特徵:索引。這是一般對象所沒有的。
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中的数组与伪数组的区别
MDN arguments
Avoid modifying or passing arguments into other functions — it kills optimization
Optimization killers
Why isn't a function's arguments object an array in Javascript?
arguments 对象
Advanced Javascript: Objects, Arrays, and Array-Like objects
JavaScript 特殊对象 Array-Like Objects 详解
What is a good way create a Javascript array-like object?