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