Just while fiddling through arrays i found this.
why there is significant difference between the following three statements:
[1,2]+[3,4];
[1,2].toString()+[3,4].toString();
[1,2].join(',')+[3,4].join(',');
And if
[1,2]+[1,2]
performs the same as converting to string and then joining the two strings, then shouldnt be performance of them be somewhat similar
This question is inspired from this answer