#javascript (From boot.dev Ch.2: 7) October 23, 2024 @ 04:13 --- * `&&` ⟶ and ⟶ returns `true` if both are true * `||` ⟶ or ⟶ returns `true` if either are true * `!` ⟶ not ⟶ returns `true` only if the input is `false` **Note**: You can use parentheses to specify the order of operations