Comparing a Date object to null, what happens?

552 Views Asked by At

I came across the fact, that when you compare dates in JavaScript, the following happens:

$ new Date() > null
> true

$ new Date() > undefined
> false

I was wondering, what exactly happens under the hood, that leads to this behavior.

0

There are 0 best solutions below