++[[]][+[]]+[+[]]
is valid and returns "10" in JavaScript (more examples here).
Can you explain why? I don't understand what's happening here.
is valid and returns "10" in JavaScript (more examples here). Can you explain why? I don't understand what's happening here. |
||||
| show 1 more comment |
|
If we split it up, the mess is equal to:
In JavaScript, it is true that Therefore, we can simplify it (
Because
Again, we can simplify the mess into something more legible. Let's substitute
In JavaScript, this is true as well:
Let's simplify it even more:
Also, this is true in JavaScript: So, in the end we obtain (number + string = string):
Specification details for This is quite a maze, but to do
The
So Again, the
So |
|||||||||||||||||||||
|
Then we have a string concatenation
|
|||
|
|
|
The following is adapted from a blog post answering this question that I posted while this question was still closed. Links are to (an HTML copy of) the ECMAScript 3 spec, still the baseline for JavaScript in today's commonly used web browsers. First, a comment: this kind of expression is never going to show up in any (sane) production environment and is only of any use as an exercise in just how well the reader knows the dirty edges of JavaScript. The general principle that JavaScript operators implicitly convert between types is useful, as are some of the common conversions, but much of the detail in this case is not. The expression
Breaking this down, we can simplify by observing that
Simpler already. As for So, we can simplify So then, what does This leaves us with
... which is a simple use of the addition operator. Both operands are first converted to primitives and if either primitive value is a string, string concatenation is performed, otherwise numeric addition is performed. As a final aside, something that may not be immediately apparent is that overriding either one of the
... produces |
||||
|
|
|
+[] evaluates to 0 [...] then summing (+ operation) it with anything converts array content to its string representation consisting of elements joined with comma. Anything other like taking index of array (have grater priority than + operation) is ordinal and is nothing interesting. |
|||
|
|
|
Let’s make it simple:
|
||||
|
|
|
This one evaluates to the same but a bit smaller
so is evaluates to
So now you got that, try this one:
|
|||||||
|
|
||||
|
|
Perhaps the shortest possible ways to evaluate an expression into "10" without digits are:
//========== Explanation ==========\\
Then JS evaluates the Some examples:
There's a nice exception that two
|
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
+[]casts an empty array to0... then waste an afternoon... ;) – deceze Aug 26 '11 at 8:51