Skip to content

Files

Latest commit

267f792 · Jan 23, 2023

History

History

logical-operators

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 23, 2023
Jan 23, 2023

JavaScript - Logical operators

Logical operators are used to check for multiple conditions.

  • && - condition would be true if both the sub conditions must be true.
  • || - condition would be true if any one of the sub conditions be true.
  • ! - negation of a particular condition.