vote up 2 vote down star

There doesn't seem to be a way to expand a JavaScript Array with another Array, i.e. to emulate Python's expand method.

What I want to achieve is the following:

>>> a = [1, 2]
[1, 2]
>>> b = [3, 4, 5]
[3, 4, 5]
>>> SOMETHING HERE
>>> a
[1, 2, 3, 4, 5]

I know there's a a.concat(b) method, but it creates a new array instead of simply extending the first one. I'd like an algorithm that works efficiently when a is significantly larger than b (i.e. one that does not copy a).

flag

4 Answers

vote up 4 vote down

The best I came up with so far is:

>>> a.push.apply(a, b)

but it feels a little like a hack. Any other suggestions?

link|flag
This is exactly how you do it. Why does it feel like a hack? – kangax Sep 3 at 15:41
1  
I think this is your best bet. Anything else is going to involve iteration or another exertion of apply() – Peter Bailey Sep 3 at 15:43
vote up 0 vote down

Did u try it by using splice method ?

link|flag
vote up 0 vote down

concat will be the one you want:

>>> a = [1, 2]
[1, 2]
>>> b = [3, 4, 5]
[3, 4, 5]
>>> a = a.concat(b)
>>> a
[1, 2, 3, 4, 5]

Edit: just saw your note about concat. In that case your a.push.apply(a, b) is going to be the most efficient.

link|flag
Did you even try to execute your code? It does not work, as concat does not modify array 'a'. – DzinX Sep 4 at 8:00
you're right need to assign result back to to a – McKAMEY Sep 4 at 15:27
vote up 1 vote down

It is possible to do it using splice():

b.unshift(b.length)
b.unshift(a.length)
Array.prototype.splice.apply(a,b) 
b.shift() // restore b
b.shift() //

But despite being uglier it is not faster than push.apply, at least not in Firefox 3.0. Posted for completeness sake.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.