I was just browsing Sizzle's source code and I came across this line of code:
array = Array.prototype.slice.call( array, 0 );
I looked up what the function is, but I came to the conclusion that it just returns all elements of the array starting from index 0, and puts the whole into the array, i.e. it doesn't really do anything at all.
What is therefore the use of this line of code? What am I missing?
Edit: It's line 863 from .js#L863.
I was just browsing Sizzle's source code and I came across this line of code:
array = Array.prototype.slice.call( array, 0 );
I looked up what the function is, but I came to the conclusion that it just returns all elements of the array starting from index 0, and puts the whole into the array, i.e. it doesn't really do anything at all.
What is therefore the use of this line of code? What am I missing?
Edit: It's line 863 from https://github.com/jquery/sizzle/blob/master/sizzle.js#L863.
Share Improve this question edited Sep 14, 2011 at 11:29 pimvdb asked Feb 28, 2011 at 17:02 pimvdbpimvdb 155k80 gold badges311 silver badges356 bronze badges 2 |3 Answers
Reset to default 76The DOM usually returns a NodeList
for most operations like getElementsByTagName
.
Although a NodeList
almost feels like an array, it is not. It has a length
property like an array does, and a method item(index)
to access an object at the given index (also accessible with the [index]
notation), but that's where the similarity ends.
So to be able to use the wonderful array methods without rewriting them all for a NodeList
, the above line is useful.
Another use of converting it to an array is to make the list static. NodeLists are usually live, meaning that if document changes occur, the NodeList object is automatically updated. That could cause problems, if a jQuery object returned to you kept changing right under your nose. Try the following snippet to test the liveness of NodeLists.
var p = document.getElementsByTagName('p');
console.log(p.length); // 2
document.body.appendChild(document.createElement('p'));
// length of p changes as document was modified
console.log(p.length); // 3
What's happening here is that Sizzle is creating an actual array out of an array-like object. The array-like object doesn't necessarily have the slice() method, so the prototype method has to be called directly. makeArray()
returns a copy of that array-like object that is an actual array, and can be used as such else where.
See here for more information about array-like objects.
As BoltClock says, it makes a (shallow) copy of an array. It can also be used to copy something that is almost an array, such as the arguments
builtin, which has a length and items but no Array in its prototype chain (and hence no slice method).
array.slice(0)
, which would make a copy of the array. I don't understand why it's being called in such an impenetrable fashion though. – spender Commented Feb 28, 2011 at 17:04array
identifier isn't referencing an actual Array. – user113716 Commented Feb 28, 2011 at 17:14