I know it is used to make arguments a real array, but I don't understand what happens when using prototype.slice.call(arguments)
|
|
||||
|
|
What happens under the hood is that when How is
...the
...the But what if you could substitute something else as the The Take this plain object as an example.
This is obviously not an Array, but if you can set it as the
Example: http://jsfiddle.net/wSvkv/ As you can see in the console, the result is what we expect:
So this is what happens when you set an |
|||||||||||
|
|
The Arrays do have this method, and because the So why use But why do we have to do this in the first place? Well, as you said, it converts an arguments object into an Array instance. The reason why we use slice, however, is more of a "hack" than anything. The slice method will take a, you guessed it, slice of an array and return that slice as a new array. Passing no arguments to it (besides the arguments object as its context) causes the slice method to take a complete chunk of the passed "array" (in this case, the arguments object) and return it as a new array. |
||||
|
|
Normally, calling
will copy the array
because |
|||||||
|
|
Dont forget, that a low-level basics of this behaviour is the type-casting that integrated in JS-engine entirely. Slice just takes object (thanks to existing arguments.length property) and returns array-object casted after doing all operations on that. The same logics you can test if you try to treat String-method with an INT-value:
And that explains statement above. |
||||
|
|
|
I'm just writing this to remind myself...
Or just use this handy function $A to turn most things into an array.
example usage...
|
|||
|
|
|
It uses the Creating a slice without any arguments will simply take all elements - so it simply copies the elements from |
|||
|
|
|
Let's assume you have:
The slice() method selects a part of an array, and returns the new array. So when you call |
|||
|
|
|
Its because, as MDN notes
Here we are calling
|
|||
|
|

