Adding things up
> []+[] // ""
> []+{} // "[object Object]"
> {}+[] // 0
> {}+{} // [object Object][object Object]
Well those are some nice and consistent results!
> []+[] // ""
> []+{} // "[object Object]"
> {}+[] // 0
> {}+{} // [object Object][object Object]
Well those are some nice and consistent results!