I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug:
[1,2] + [3,4]
It responded with:
"1,23,4"
What is going on?
|
I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug:
It responded with:
What is going on? |
|||||||||||||||||||
|
|
The What happens is that Javascript converts arrays into strings and concatenates those.
UpdateSince this question and consequently my answer is getting a lot of attention I felt that in addition to the insightful stuff posted by Jeremy Banks it would be useful to have an overview about how the So, here it goes. Excluding E4X and implementation-specific stuff, JavaScript has 6 built-in data types:
Note that neither That's right - JavaScript has no primitive arrays as such; only instances of a class called Adding more to the confusion, wrapper entities such as Easy, huh? With all that out of the way, we can move on to the overview itself. Different result types of
* this applies to Chrome 13, Firefox 6, Opera 11 and IE9. Checking other browsers and versions is left as an exercise for the reader. Note: As pointed out by CMS, for certain cases of objects such as To see how the overview table was generated visit http://jsfiddle.net/4EjXd/ |
|||||||||||||||||||||
|
|
JavaScript's If you want to join two arrays to produce a new one, use the
If you want to efficiently add all elements from one array to another, you need to use the .push method in this somewhat-verbose way:
The behaviour of the
You can see that each operand is converted |
|||||||||||||||||||
|
|
It adds the two arrays as if they were strings. The string representation for the first array would be "1,2" and the second would be "3,4". So when the |
|||||||
|
|
The
To combine arrays, use
|
|||
|
|
|
In JavaScript, the binary addition operator ( Try using the "concat" method of Arrays instead:
|
|||
|
|
|
It looks like JavaScript is turning your arrays into strings and joining them together. If you want to add tuples together, you'll have to use a loop or a map function. |
|||
|
|
|
It's doing exactly what you asked it to do. What you're adding together are array references (which JS converts to strings), not numbers as it seems. It's a bit like adding strings together: |
|||||
|
|
and so to solve your problem, best thing would be to add two arrays in-place or without creating a new array:
|
||||
|
|
|
The + function is actually used to add numbers and concatenate strings. It does not support arrays. The only thing it could figure out to do is to convert them to strings first. From here
|
|||
|
|
|
would be nice if you could overload operators in JavaScript but you can't: Can I define custom operator overloads in Javascript? you can only hack the "==" operator which converts to strings before comparing: http://blogger.xs4all.nl/peterned/archive/2009/04/01/462517.aspx |
|||
|
|
|
It is because, + operator assumes that the operands are string, if they are not numbers. So, it first converts them to string and concats to give the final result , if its not a number. Also, it does not support arrays. |
|||||
|