In chrome console (v. 55.0.2883):
{} + {}
"[object Object][object Object]"
but
{} + []
0
{} + {} == "[object Object][object Object]"
false
Why in first case chrome takes first braces as an object instead of empty block? Some new es6 feature?
I know about this. In my case the behavior is different