Computer Science, asked by cristyjacob10, 7 months ago

Logical expression for conditions

Answers

Answered by kartiksharma0711
1

Answer:

Boolean expressions are most often used as conditions (as in the examples above).

...

Boolean Expressions.

Operator Name of operator

<= less than or equal to

== equal to

!= not equal to

>= greater than or equal to

Answered by amishidps
1

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