Boolean(0) === false
Boolean(0) will convert the number 0 into a boolean false.
Boolean(0)
0
false
A shorter, but less clear, form:
!!0 === false