Boolean Expressions Reading assignment

Operators are used to assign values, compare values, perform arithmetic operations.
Operators manipulate values.

Examples of binary operators are +, -, *, / and %, string concatenationi (+), comparison (==, !=, ===, !==, <, >, <=, >=)

Logical operators are && logical and (makes true if both values the same)
II logical or (makes true if both values different), ! ?

1 Like
  1. Operator is a special symbol used to perform operations on operands (values and variables)
  2. plus, minus, multiply, divide, equal, not equal, greater than, less than
  3. JavaScript supports three logical operators: and (&&), or(||), and not (!).
1 Like
  1. An operater performs some operation on single or multiple operands(data values) and returns a result.
  2. plus(+) minus(-) multiply(*) divide(/) > >= < <= == != && ||
  3. && || !
1 Like
  1. Operators give commands to values

  2. Plus (+), minus (-), divide (/), multiply (*)

  3. Or (||), and (&&), not (!)

1 Like
  1. An operator performs some operation on single or multiple data values and produces a result.

  2. addition (+), subtraction (-), multiplication (*), division (/), greater than (>), less than (<), greater than or equal to (>=), less than or equal to (<=), equal to (==), not equal to (!=).

  3. And (&&), Or (||), Not(!)

1 Like
  1. Operators are used to assign values and perform operations like + - */

  2. Examples of Binary Operators would be True/False Yes/No

3 Examples of Logical Operators include &&(and) II(or) !(not)

1 Like
  1. What are operators?
    Operators are actions you execute on values
  2. What binary operators do you know?
    Add
    Subtract
    Divide
    Multiple
    Modulus
    Less than
    Greater than
    Equal
  3. What logical operators do you know?
    And
    Or
    Not
1 Like

1.operators are used to run functions.
2.binary operators are used in between to values. 4* 7 and x+ y in these two examples * and + are binary operators .
3.and & &
…or ll
…not !

1 Like
  1. Operators are functions that can altar values
  2. Addition, Shift, Equality, Multiplication and Relational
  3. &&,!,||
1 Like
  1. Operators are symbols or expressions that when used with values, produce a new value.
  2. == ; != ; && ; || ; < ; > ; + ; - ; * ; /
  3. && ; || ; !
1 Like
  1. What are operators?
    +/-*
  2. What binary operators do you know?
    % <<=>> l <= & >=
  3. What logical operators do you know?
    ? & l && ll !
1 Like
  1. Operators are functions that produces a new value when placed between two values. Example 1+1=2 the"+" is the operator.
  2. The β€œ>, <” are binary operators.
  3. Some logical operators include : and β€œ&&&” ; or β€œ||” ; not β€œ!”
1 Like
  1. Operators are symbols used to assign values to javascript variables.
  2. Booleans, =, +, -,
  3. &&, ||, !
1 Like

Operators are actions that work with two operands and manipulates them to return a result. There are arithmetic, relational, logical, and assignment operators.
Binary operators include:
Equal (==)
Not equal (!=)
Less than (<)
Greater than (>)
Greater than or equal to (>=)
Less than or equal to (<=)
Plus (+)
Minus (-)
Multiplication (*)
Divide (/)
Modulus(%)

Logical operators include:
AND (&&), OR (||), NOT(!)

1 Like
  1. Operators are used to combine input values (with the exception of unary operators, which require
    just 1 input value) in order to produce an output value as a result.

  2. The followings are binary operators:
    a) arithmetical operators: +, -, *, /, %
    b) logical operators: &&, ||

  3. The following are logical operators:
    a) unary logical operators: !
    b) binary logical operators: &&, ||
    c) ternary logical operators: conditional operator

1 Like
  1. Operators are used to assign values, compare values, perform arithmetic operations, and more.
  2. +, -, *, /, %,<, >, <=, >=, ==, !=, ===
  3. And: &&
    Or: ||
    Not: !
1 Like
  1. What are operators? O perators apply a function on to a value that produces another value. Operators perform specific functions such as addition, subtraction & multiplication. Some JavaScript operators include: Mathematical, Boole a n, Modulus, Increment, Decrement , Bitwise, Unary & Binary .

  2. What binary operators do you know?

+   //Add
-   //Subtract
/   //Divided by
*   //Multiple
%   //Modulus
<   //Less than
>   //Greater than
&   //AND
|   //OR
^   //XOR
~   //Invert each bits
<<  //Move all bits onto the left
>>  //Move all bits onto the right
>>> //Move all bits onto the right and fill left end with 0
  1. What logical operators do you know?

Or: ||

And: &&

Nullish Coalescing : ??

Not: !

1 Like
  1. What are operators?
    Symbol which used to perform operations.(=,-,*,etc)
    2.What binary operators do you know?

,<,=,( Arithmetic)

  1. what logical operators do you know?
    //(or), &&(and), !(not).
1 Like
  1. Operators manipulate values by performing the arithmetical or logical operation
  2. +, -, / , *, %, <, >, ==, !=
  3. &&(AND), || (or), ! (Not)
1 Like

1.* What are operators?

  • Operators are symbols that used with values such as Binary, Unary and Ternary operator.

2. What binary operators do you know?

  • Binary operators its result only if both the values given to it are true, knows as &&, | |

3. What logical operators do you know?

  • Logical operators OR It produces true if either of the values given to it is true known as | |
1 Like