Boolean Expressions Reading assignment

  1. They perform operations on the values.
  2.  < less than
      > greater than
      <= less than or equal to
      >= greater than or equal to
      == equal to
      === equal value and equal type
     != not equal
     !== not equal value or not equal type
    
  3. || or
    && and
    ! not
1 Like

1. What are operators?
There are different types of “operators” ( arithmetic, logical, ternary ) .
Operators are applied to combine and transform values

2. What binary operators do you know?
+, -, *, /, ^ (power), % (modulo), ==, ===, !=, !==, <, >, <=, >=, &&,||,

3. What logical operators do you know?
&& (and), || (or), ! (not )

1 Like

What are operators?
Operators are what gets inserted between two or more values to do calculations
5 + 2 will make “+” the operator

What binary operators do you know?
Operators that use two values are called binary operators,
those that use one are called unary operators.
Equal (==)
Not equal (!=)
Less than (<)
Greater than (>)
Greater than or equal to (>=)
Less than or equal to (<=)
Logical AND (&&)
Logical OR (||)
Plus (+)
Minus (-)
Multiplication (*)
Divide (/)

What logical operators do you know?
Not And Or !,&& ||

1 Like
  1. Operators are symbols which are used to preform different types of operations according to the need, such as : assign values, compare values, perform arithmetic operations, logical operations, and more.

  2. Binary operators :

  • *** :** Multiplication

  • / : Division

  • + : Addition

  • – : Subtraction

  • % : Modulo

  • ==, Equal to :

  • !=, Not Equal to :

  • <, less than :

  • <=, less than or equal to :

  • >, Greater than :

  • >=, Greater than or equal to:

  1. Logical Operators :
  • &&, Logical AND : returns true when both conditions are true.
  • ||, Logical OR : returns true if at least one condition is true.
1 Like

1.Operators are objects that tell to program what to do with different values(like: +,-,/,*)
2.Binary operators:less than <, greater then >,not equal !=,greater than or equal >=,less than or equal <=, Equal ==,
3.Logical Operations : And -&& , Or- II and Not- !

1 Like
  1. Operators perform an action with a value or string in Javascript.
  2. The binary operators make an action with 2 values or strings.
    examples are + - / *
    Like 2+4 where 2 and 4 are the values, and the + is the binary operator.
  3. The logical operators we know are
    || (or)
    && (and)
    ! (not)
1 Like
  1. What are operators?

    Operators can be symbols like + - / % (modulo operator) or sometimes they are written as words (like typeof, which is a unary operator).

  2. What binary operators do you know?

    Binary operators are > , < , >= , <= , == , !=

  3. What logical operators do you know?
    && and
    || or
    ! not
    and another one which is represented by a question mark and a colon and it is ternary and called Conditional Operator.

1 Like
  1. Operators take one or more arguments (numbers, strings, booleans) and perform some calculation or comparison on them and then return the result. Unary operators take one argument, binary operators two, whilst a ternary operator takes three arguments.

  2. The binary operators are: +, -, *, /, %, >, <, >=, <=, ==, !=, ===, !==

  3. Logical operators (which work with boolean parameter values and return a boolean result) are: && (logical AND), || (logical OR), ! (logical NOT - which is a unary operator)

1 Like
  1. What are operators?
    operators are signs in javascript that indicate certaiin arithemtic calculation and/or function will be executed. among the operators are mathematical +,-,/,* and modulus % then we have logical ||, &&,==, != .

  2. What binary operators do you know?
    Binary operator is any operator that requires two values to be given in order to execute it’s purpose in a sense we want it to. the following are among binary operators; +.-.*./,&&,||,==,!=

  3. What logical operators do you know?
    we know the following logcal operators; &&, || , ==, !=, !, ===

1 Like
  1. What are operators? Operators are used to compare and assign values as well as performing arithmetic operations
  2. What binary operators do you know? Additive operators: addition (+) and subtraction (-), Multiplicative operators: multiplication (*), remainder (%), and division (/), Shift operators: left shift (<<) and right shift (>>), Relational operators: less than (<), less than or equal to (<=), greater than (>), and greater than or equal to (>=), Equality operators: equality (==) and inequality (!=), Bitwise operators: AND (&), OR (|), and XOR (^), Logical operators: AND (&&) and OR (||)
  3. What logical operators do you know? AND (&&) and OR (||) and NOT (!)
1 Like

What are operators?
These are used to get outcomes or expected results or behaviors from a computer program in javascript. They can be used to add logic in computer program.

What binary operators do you know?
The && and || operators which denotes logical and and or respectively

What logical operators do you know?
! - denotes logical Not
|| - denotes logical or
typeof - Urinary picks the type of character in the tag
&& - Logical denotes And
(-) - Minus can be arithmetic operator and urinary same time

1 Like
  1. What are operators?
    Functions that can manipulate value

  2. What binary operators do you know?
    +, -, *, /, ||, &&, ==, !=, <,>, >=, <=

  3. What logical operators do you know?
    && (AND)
    || (OR)
    ! (NOT)

1 Like
  1. Operators are specific functions/methods which are already implemented in a language. These operators can handled by the compiler or interpreter. Operators can perform mathematical, relational or logical operations. All of them produce an output.

  2. Binary: + - * / % ++ – == != > < >= <=

  3. Logical: && || !

1 Like
  1. What are operators? Operators are pieces of code that use values to make new results. Unary operators act on 1 value, binary on 2 and ternary on 3.
  2. What binary operators do you know? + / * % - == !=
  3. What logical operators do you know? || && ?true ?false
1 Like
  1. Operators are objects that behave like functions and are able to perform actions (for example arithmetic, comparison, and logical operations) on values.
  2. Some examples are equal (==), greater than (>), less than (<), additive operators (+ or -) and so on.
  3. OR, AND and NOT
1 Like
  1. What are operators? Operators act on values by using them to produce an answer.
  2. What binary operators do you know? Binary operators: + / - * % = != < > <= >= === ==
  3. What logical operators do you know? Logical operators work on Booleans, || && == ===
1 Like
  1. An operator performs an action between two inputs.
  2. = + - / * > <
  3. && || !
1 Like
  1. Operators are elements that manipulate values
  2. <, >, =, <=, >=, ==, !=
  3. &&, ||, !
1 Like
  1. What are operators? operators are used to indicate what the outcome of an input in a script wold be

  2. What binary operators do you know? The > and < signs are the traditional symbols for “is greater than” and “is less than”, respectively

  3. What logical operators do you know? 1 && operator represents logical and 2 || operator denotes logical or 3Not is written as an exclamation mark (!)

1 Like

1.Operators are essentially the symbols that denote actions which will be taken on values.

  1. Binary operators we have learned include +, -, *, /, %, ==, !=, <, >, <=, and >=

  2. Logical operators we have learned include &&, ||, and !

1 Like