JavaScript Logical Operators Guide
JavaScript has three main logical operators: && (AND), || (OR), and ! (NOT). AND operator returns true only if all conditions are true. OR operator returns true if at least one condition is true. NOT operator negates truthiness of values
- freecodecamp.org