Logical Operators

Intro

There are four logical operators in JavaScirpt:

  1. || OR - finds the first truthy value

  2. && AND - finds the first falsy value

  3. ! NOT

  4. ?? Nullish Coalescing