There are quite lot of people out there criticizing Javascript for long time and never wanted to know “what Javascript is capable of” and “what wonders it can do for you”. The reason behind developer’s ignorance to an awesome programming language is because of its some unusual behavior from other conventional strict programming languages such as Java,C++,etc and piles of mistake in it.
In span of time Java, C++ and other conventional programming languages where considered as developers language whereas Javascript which comprises of the term Java in its name was still neglected due to its worst ideas put in the language even though it consists of awesome and powerful features which are unnoticed by most developers.
Let me share few nasty behavior of Javascript and behind the scene secret
1) Array + Array
[] + [] // Output : “”
Combining two empty array results in an empty string sounds creepy?
Behind the scene:
Javascript converts both arrays to an empty strings then combines both the strings resulting in an empty string output. Basically for arrays this is the same as calling array.join() and therefore joining two empty array which results in an empty string
2) Array + Object
[] + {} // Output: [Object object]
Combining an empty Array and an Object literal returns an Object string. What the heck is going on?
Behind the scene:
Javascript converts an Array to an empty string and object to a string (via object.toString()) [Object object] and which results in an output [Object object]
3) Object + Array
{} + [] // Output: 0
I think everyone would be expecting similar output as above but that’s not the case whereas it returns output number “0”.I think now you might be freaking and screaming out there.
Behind the scene:
Javascript executes the {} block of code which barely does anything assuming the statement to be an expression then +[] which returns 0. Why the heck it results in an weird output but after going through “ECMA-262 standard” the unary + operator returns ToNumber(ToPrimitive(operand)).As we already know, ToPrimitive([]) is the empty string, hence ToNumber(“”) results in “0″.
4) Object + Object
{} + {} //Output: NaN
Again a nasty piece of output combining two objects results in a NaN.
Behind the scene:
Javascript executes the {} block of code which does nothing as in the previous case then +{} which returns NaN and again a nonsense output. Again, +{} is the same as ToNumber(ToPrimitive({})), and ToPrimitive({}) is “[object Object]“ (see [] + {}). So to get the result of +{}, we have to apply ToNumber on the string “[object Object]“.Therefor the following steps results in NaN.
These nasty outputs and piles of mistakes in language lead to the degradation of javascript whereas its good parts where still hidden behind the woods.
Read my article posted on http://www.avlabz.com/2013/04/javascript-is-stupid-but-smart-and-powerful/
Array(16).join("wat - 1")gives me"wat - 1wat - 1wat - 1...". – Felix Kling Jan 27 '12 at 12:04