How many types of logical operators are present?
Answers
Answered by
14
Answer:
three logical operators
There are three logical operators in JavaScript: || (OR), && (AND), ! (NOT). Although they are called “logical”, they can be applied to values of any type, not only boolean.
Explanation:
Answered by
2
3 logical operators
Explanation:
There are three logical operators in JavaScript: || (OR), && (AND), ! (NOT). Although they are called “logical”, they can be applied to values of any type, not only boolean.
Similar questions