[jQuery] How do I convert an Array to a Map-Object?

[jQuery] How do I convert an Array to a Map-Object?


Hi,
I'm trying to use the $.get Operation with multiple input arrays for
the parameters list.
This is no problem:
$.get('http://...', {key: 'value'}, function() {});
But how do I merge two Arrays and send them as one parameter list? For
example somehow like this:
$.get('http://...', arr1.concat(arr2), function() {});
Thanks for your help!
Ben