Alright, ready for another one? Let's check out the logical or, otherwise written as ||.

These odd-looking symbols are called pipes. Much like with &&, Ruby will look for comparisons on both sides of the operator.

See that? Only one of the values we compare has to be true for the || to evaluate to true.

Psst: in the next chapters, we'll get a better understanding of how useful these logical operators are.

Didn't we want to use the logical or?