What is the result of the comparison between null and 0 in JavaScript?
The comparison returns true since null and 0 are both considered falsy values.
The comparison returns false since null and 0 are different types.
The comparison throws an error since null and 0 are not comparable.
The comparison depends on the specific comparison operator used.