Speaking of the logical or, which of these logical-or expressions return true?

(true || false) == truetrue || false(true || true) == falsefalse || false

Nice! The logical or returns true unless both boolean-type values are false.

So close! The logical or returns true unless both boolean-type values are false.