7 falsy values๏ผ(converts to false)
any other value is "truthy", and converts to true.
operator(s) that expect boolean operands will work with an operand of any type
'0' == false // trueโ๏ธ
if ('0') console.log('hi') // hi (โญ๏ธ '0' is truthyโ๏ธ)
'0' === false // falseโ๏ธ
// facts about empty array
[] == ![] // trueโ๏ธ
[] == [] // falseโ๏ธ
Boolean([]) // true
Boolean(![]) // falseโ๏ธ