If you miss the part 1 and part 2 check out part1,part2
[ ]+{ }
[ ]+0
{ }+1
[ ]-0
For further actions, you may consider blocking this person and/or reporting abuse
Voidβ‘ -
Varshith V Hegde -
Aron SchΓΌler -
Esmatullah Niazi. ΰ½Όΰ½Ό -
Once suspended, sait will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, sait will be able to comment and publish posts again.
Once unpublished, all posts by sait will become hidden and only accessible to themselves.
If sait is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Sai gowtham.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community π©βπ»π¨βπ» safe. Here is what you can do to flag sait:
Unflagging sait will restore default visibility to their posts.
Top comments (8)
WAT
That's all there is to say about those things... See this brilliant talk:
destroyallsoftware.com/talks/wat
Try with this too:
Wrong on the first one, definitly not expected that.
How about
[]+{} == {}+[]
?My answers, 50%:
How does this happen? Can anyone explain? :O
The
+
operator can either concatenate two elements or perform an addition.In the first case, it will convert both elements to strings, the array being an empty string and the second one being
[Object object]
.Second does pretty much the same thing,
[] = '', 0 = '0', '' + '0' = '0'
And the others are similar.