What is the difference between those two? I would expect it be equal
![]
yields false
[] == false
yields true
![] != []==false
yields true
while I would expect it to be false
. Why is that? If []
is falsy, shouldn't both expression evaluate to true
??