JavaScript - Difference between Array and Array-like object

前端 未结 4 1825
再見小時候
再見小時候 2020-11-27 13:38

I have been coming across the term \"Array-Like Object\" a lot in JavaScript. What is it? What\'s the difference between it and a normal array? What\'s the difference betwee

4条回答
  •  天涯浪人
    2020-11-27 14:10

    What is it?

    An Object which has a length property of a non-negative Integer, and usually some indexed properties. For example

    var ao1 = {length: 0},                     // like []
        ao2 = {0: 'foo', 5: 'bar', length: 6}; // like ["foo", undefined × 4, "bar"]
    

    You can convert Array-like Objects to their Array counterparts using Array.prototype.slice

    var arr = Array.prototype.slice.call(ao1); // []
    

    Whats the difference between it and a normal array?

    It's not constructed by Array or with an Array literal [], and so (usually) won't inherit from Array.prototype. The length property will not usually automatically update either.

    ao1 instanceof Array; // false
    ao1[0] = 'foo';
    ao1.length; // 0, did not update automatically
    

    Whats the difference between an array-like object and a normal object?

    There is no difference. Even normal Arrays are Objects in JavaScript

    ao1 instanceof Object; // true
    [] instanceof Object; // true
    

提交回复
热议问题