Boolean Expressions Reading assignment

  1. Operators are used to assign values, conditions and comparing

  2. ±*/%

  3. &&
    ||
    !
    <

    ==
    =>
    =<
    !=

1 Like

1.operators are used to assign values to perform arithmetic operations, compare values and etc. Basically maths that are use to calculate but there are many types of operators such as below.
2. binary operators are example: +,-,*,/,% ,++ and –
3. logical operators are &&(and), ||(or),!(not)

1 Like

What are operators?
They are symbols that perform an operation upon operands.

What binary operators do you know?
Add: +
Subtract: -
Multiply: *
Divide: /
Modulus: %
Equals: ==
Not Equal: !=
Logical And: &&
Logical Or: ||
Greater Than: >
Less Than: <
Less Than/Equal To: <=
Greater Than/Equal To: >=

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

1 Like
  1. Operators take one or more values and complete an operation or computation on them and produce a new value.

  2. add (+), subtract (-), multiply (*), divide (/)

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

1 Like

1.What are operators?
Answer:
JavaScript operators are used to assign values, compare values, perform arithmetic operations etc.
2.What binary operators do you know?
Answer:
• Equal (==)
• Not equal (!=)
• Less than (<)
• Greater than (>)
• Greater than or equal to (>=)
• Less than or equal to = (<=)
• AND (&&)
• OR (||)
• Plus (+)
• Minus (-)
• Multiplication (*)
• Divide (/)
• Remainder (%)

3.What logical operators do you know?
Answer:
• Logical AND (&&)
• Logical OR (||)

2 Likes
  1. They perform actions between values that return a result value.
  2. +, -, /, *. <,>,==,===
  3. &&, ||, !
1 Like

What are operators?

  • operators are the actions/functions done between values.

What binary operators do you know?

  • Operators that use two values are called binary operators

What logical operators do you know?

  • AND ==> &&
  • OR ==> ||
  • NOT ==> !
1 Like

2 Likes
  • What are operators?
    A: Operators manipulate/“do something” to the values (ex. multiply, add, etc.)

  • What binary operators do you know?
    A: Greater than/less than (>, <), less than or equal to, greater than or equal to (<=, >=), greater than/less than (>,<), equal, not equal (==, !=).

  • What logical operators do you know?
    A: && (and), || (or), ! (not)

1 Like
  1. Operators are objects capable of manipulating values
  2. Mathematical (addtion, subtraction, etc.), Modulus (% or remainder)
  3. &&(and), !! (or) and ! (not)
1 Like
  1. operator are put between two values and will apply it to those values and produce a new value.
    • , - , * , / , % ) == , != , === , !== , < , > , <= , >=.
  2. && , ||.
1 Like

Hi @RLion could you mention some binary operators? :grinning:

1 Like
  1. operators perform actions on values

  2. +,-,×,÷,%,>,<,<=,>=,==,!=,===,!==

  3. &&,||,!

1 Like

Hi,
some more operators ==, Not equal !=, <,>,+,/,-,*

1 Like
  1. What are operators?
    JavaScript operators are symbols that used to assign, compare value and perform operations.

  2. What binary operators do you know?
    We have arithmetic operator, assignment operators, String, Comparison operators, Conditional Operators.

  3. What logical operators do you know?
    There are three logical operators in JavaScript: || (OR), && (AND), ! (NOT).

1 Like

What are the operators?
An operator is an element that indicates the type of operation to be applied to one or more data. All of us already learned many of these operators when we went to school. The symbols of adding, multiplying, subtracting, etc. These are all operators. We have several types of operators.
What binary operators do you know?
They are those that use two operands, for example all arithmetic operators: addition, subtraction, multiplication, division … They are binary operators.
What logical operators do you know?
AND logical && AND logical OR || OR Logical negation! NOT
Logical operators provide us with a result from whether a certain condition is met or not, they produce a Boolean result, and their operands are also logical values ​​or can be assimilated to them (numerical values ​​are assimilated to true or false depending on their value. zero or non-zero). This generates a series of values ​​that, in the simplest cases, can be parameterized with the numerical values ​​0 and 1. The combination of two or more logical operators forms a logical function. The logical operators are three; two of them are binary, the last (negation) is unary. They have a double possibility of representation in the current C ++ standard:

1 Like
  1. Operators perform an action on single or multiple operands to produce a result. For example “+” or “-”

2.Binary operators operate on two operands and manipulates them to produce a result for example (+ - / *)

  1. A logical operator isa a symbol used to connect two or more expressions. Example (||, &&, !)
2 Likes
  1. Operators are simbols between values, putting operators between two values
    will apply it to those values and produce a new value.

  2. The > and < signs, other similar operators are >= (greater than or equal to), <= (less than or
    equal to), == (equal to), and != (not equal to).

  3. JavaScript supports three logical operators: and &&, or || , and not ! . There is also ternary operator ? .

1 Like

1.What are operators?

Operators allow two or more input values to generate an output.

  1. What binary operators do you know?

< = != + - * / %

  1. What logical operators do you know?

&& || !

1 Like
  1. What are operators?
    Symbols which are put between values and variables to add them together.

  2. What binary operators do you know?
    Operations which use two values ; +, -, *, /, %, <, >, <=, >=

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

1 Like