vote up 2 vote down star

Imagine I've got two arrays in JavaScript:

var geoff = ['one', 'two'];
var degeoff = ['three', 'four'];

How do I merge the two arrays, resulting in an array like this?

var geoffdegeoff = ['one', 'two', 'three', 'four'];
flag

1 Answer

vote up 6 vote down check
var geoffdegeoff = geoff.concat(degeoff);
link|flag
Oh yeah! Sweet, thanks. – Paul D. Waite Aug 26 at 16:21

Your Answer

Get an OpenID
or

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