Why is it that with null, the automatic type conversion is different with different binary operators?
console.log(null * 8) // => 0 * 8 => 0
console.log(null == 0) // => false
Therefore with the second statement, null doesn't get type coerced to a 0.
typeof null === 'object'