JavaScript深刻之類數組對象與arguments(轉載)

類數組對象

所謂的類數組對象:git

擁有一個 length 屬性和若干索引屬性的對象github

舉個例子:面試

var array = ['name', 'age', 'sex']; var arrayLike = { 0: 'name', 1: 'age', 2: 'sex', length: 3 }

即使如此,爲何叫作類數組對象呢?數組

那讓咱們從讀寫、獲取長度、遍歷三個方面看看這兩個對象。閉包

讀寫

console.log(array[0]); // name console.log(arrayLike[0]); // name array[0] = 'new name'; arrayLike[0] = 'new name';

長度

console.log(array.length); // 3 console.log(arrayLike.length); // 3

遍歷

for(var i = 0, len = array.length; i < len; i++) { …… } for(var i = 0, len = arrayLike.length; i < len; i++) { …… }

是否是很像?app

那類數組對象可使用數組的方法嗎?好比:函數

arrayLike.push('4');

然而上述代碼會報錯: arrayLike.push is not a function測試

因此終歸仍是類數組吶……this

調用數組方法

若是類數組就是任性的想用數組的方法怎麼辦呢?spa

既然沒法直接調用,咱們能夠用 Function.call 間接調用:

var arrayLike = {0: 'name', 1: 'age', 2: 'sex', length: 3 } Array.prototype.join.call(arrayLike, '&'); // name&age&sex Array.prototype.slice.call(arrayLike, 0); // ["name", "age", "sex"] // slice能夠作到類數組轉數組 Array.prototype.map.call(arrayLike, function(item){ return item.toUpperCase(); }); // ["NAME", "AGE", "SEX"]

類數組轉數組

在上面的例子中已經提到了一種類數組轉數組的方法,再補充三個:

var arrayLike = {0: 'name', 1: 'age', 2: 'sex', length: 3 } // 1. slice Array.prototype.slice.call(arrayLike); // ["name", "age", "sex"] // 2. splice Array.prototype.splice.call(arrayLike, 0); // ["name", "age", "sex"] // 3. ES6 Array.from Array.from(arrayLike); // ["name", "age", "sex"] // 4. apply Array.prototype.concat.apply([], arrayLike)

那麼爲何會講到類數組對象呢?以及類數組有什麼應用嗎?

要說到類數組對象,Arguments 對象就是一個類數組對象。在客戶端 JavaScript 中,一些 DOM 方法(document.getElementsByTagName()等)也返回類數組對象。

Arguments對象

接下來重點講講 Arguments 對象。

Arguments 對象只定義在函數體中,包括了函數的參數和其餘屬性。在函數體中,arguments 指代該函數的 Arguments 對象。

舉個例子:

function foo(name, age, sex) { console.log(arguments); } foo('name', 'age', 'sex')

打印結果以下:

arguments

咱們能夠看到除了類數組的索引屬性和length屬性以外,還有一個callee屬性,接下來咱們一個一個介紹。

length屬性

Arguments對象的length屬性,表示實參的長度,舉個例子:

function foo(b, c, d){ console.log("實參的長度爲:" + arguments.length) } console.log("形參的長度爲:" + foo.length) foo(1) // 形參的長度爲:3 // 實參的長度爲:1

callee屬性

Arguments 對象的 callee 屬性,經過它能夠調用函數自身。

講個閉包經典面試題使用 callee 的解決方法:

var data = []; for (var i = 0; i < 3; i++) { (data[i] = function () { console.log(arguments.callee.i) }).i = i; } data[0](); data[1](); data[2](); // 0 // 1 // 2

eg:

var fun1 = function(){} fun1.test = 'test'; console.log(fun1.test)

函數也是一種對象,咱們能夠經過這種方式給函數添加一個自定義的屬性。
這個解決方式就是給 data[i] 這個函數添加一個自定義屬性,這個屬性值就是正確的 i 值。

接下來說講 arguments 對象的幾個注意要點:

arguments 和對應參數的綁定

function foo(name, age, sex, hobbit) { console.log(name, arguments[0]); // name name // 改變形參 name = 'new name'; console.log(name, arguments[0]); // new name new name // 改變arguments arguments[1] = 'new age'; console.log(age, arguments[1]); // new age new age // 測試未傳入的是否會綁定 console.log(sex); // undefined sex = 'new sex'; console.log(sex, arguments[2]); // new sex undefined arguments[3] = 'new hobbit'; console.log(hobbit, arguments[3]); // undefined new hobbit } foo('name', 'age')

傳入的參數,實參和 arguments 的值會共享,當沒有傳入時,實參與 arguments 值不會共享

除此以外,以上是在非嚴格模式下,若是是在嚴格模式下,實參和 arguments 是不會共享的。

傳遞參數

將參數從一個函數傳遞到另外一個函數

// 使用 apply 將 foo 的參數傳遞給 bar function foo() { bar.apply(this, arguments); } function bar(a, b, c) { console.log(a, b, c); } foo(1, 2, 3)

強大的ES6

使用ES6的 ... 運算符,咱們能夠輕鬆轉成數組。

function func(...arguments) { console.log(arguments); // [1, 2, 3] } func(1, 2, 3);

 原文網址:https://github.com/mqyqingfeng/Blog/issues/14

相關文章
相關標籤/搜索