Why is [1,2] + [3,4] = “1,23,4” in JavaScript?
Answers
Answered by
0
I wanted to add the elements of an array into another, so I tried this:
[1,2] + [3,4]
It responded with:
"1,23,4"
Similar questions