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