I have these arrays:
arr1 = ['29.5', 32035];
arr2 = ['30.5', 32288];
arr3 = ['31.5', 31982];
arr4 = ['1.6', 31768];
As a result I want to have something like this:
result = [['29.5', 32035], ['30.5', 32288], ['31.5', 31982], ['1.6', 31768]];
I means the result is array created by another arrays. The question is, how I can concat the arrays. result.push.apply(result, arr1);
etc. give me array made by final values.
Thank you for any advice.