Boolean Expressions Reading assignment

  1. What are operators?
    mathematical operators (+, -, *, /, %)
  2. What binary operators do you know?
    (+, -, *, /, %)
  3. What logical operators do you know?
    &&, ||, !
1 Like
  1. Operators are used to essentially assign or calculate values.
  2. +, -, /, *
  3. &&, ||, ===, !==
1 Like
  1. an operator performs a function on given parameters
  2. Binary operators include relational, arithmetic, logical and assignment operators
  3. Logical operators include &&, ||, and !
1 Like

1.functions that manipulate values
2. == , !=, +, - , >=
3.&& (and), ! (not), || (or)

1 Like
  1. operators perform operations on values

  2. +, -, *, /, >, <, >=, <=, %, ==, !=

  3. &&, ||, !

1 Like
  • What are operators?
    -Operators manipulate values.

  • What binary operators do you know?

        • /
  • What logical operators do you know?
    && ||

1 Like
  1. Operators are a function that can manipulate value
  2. mathematical, logical, relational
  3. And, or, not
1 Like
  1. What are operators?
    Operators are different types of tools to compute a syntax

  2. What binary operators do you know?
    Yes/No,
    True/ False
    On/Off

  3. What logical operators do you know?
    Unary, Binary, Ternary

1 Like
  1. What are operators?
  • Operators compare data and allows for an input to receive an output.
  1. What binary operators do you know?
  • ==, < , >
  1. What logical operators do you know?
  • ll , && , ;!
1 Like
  1. An operator is a symbol that tells the computer or interpreter to perform a specific mathematical, relational or logical operation.

  2. -, +, *, /, =, <, >

  3. && || !

2 Likes
  1. Operators are functional tools that allow the user to manipulate (operate) on/ with values.
  2. Binary operators are operators with 2 possible options; < > <= <= == etc
  3. JavaScript supports 3 logical operators. These are ; &&, I I, and ?:
2 Likes

What are operators?

An operator acts on a value, or set of values, to produce another – the values can consist of numbers or strings (with the +, which concatenates strings together).

What binary operators do you know?

Addition (+), Subtraction (-), Multiplication (*), and Division (/) are binary operators for they act on the input values (operands).

What logical operators do you know?

The logical operators contained in JavaScript are and (&&), or (| |), and not (!).

and

Gives back true only if both the values given to it are true.

or

Produces true only if either of the values are true.

not

Flips the value given to it (!true returns false).

1 Like
  1. Operators are used to alter a value/input according to the operators function. (add, subtract, divide, etc…)
  2. Some binary operators: < (is less than) , > (is greater than) , <= (is less than or equal to), >= (is greather than or equal to), == (is equal to), != (is not equal to)
  3. Logical operators: And β€˜&&’, Or - β€˜| |’ , Not - !.

There is another logical operator called β€œternary” that uses 3 values. I am still working on fully understanding how to use those in practice / how to use all of these operators to create more complex programs.

Keep it coming and Thank You!

1 Like

Operators are used to perform an operation. They can assign & compare values, execute math operations, evaluate expressions and more.

, <, ==, ===, <=, >=, !=, +, -, *, /, %

&&, ||

1 Like
  1. What are operators?

An operator is applied is applied to two values to provide a new value. Some examples would be + - * /

  1. What binary operators do you know?
  • , - , * , /, %
  1. What logical operators do you know?

&&, //, ! , ? :

1 Like

!) Operators are either in Arithmetic, binary, unary, logical and ternary form which are use in JS to bring forth result or values to a given data or pice of program.
2) Binary operators, (+) (-) (*) (/) so on and so forth.
3) Logical operators. (&&) (||) (!).

2 Likes

What are operators?
Operators perform operations on values.

What Binary operators do you know?

1.< (is less than)
2.>(is greater than)
3.== (is equal to)
4.<= (less than or equal to)
5.>= (greater than or equal to)
6.!= (not equal to)
7. && (and)
8. || (or)
9. % (modulo)
10. * (multiply)

Among many others as binary operations are simply operations requiring two operands ( x + y) so + is a binary operation.

What logical operators do you know?

  • && (and)
  • || (or)
  • ! (not)
1 Like
  1. Operators are steps(symbols) we take to apply to pieces of data.
  2. +, -, *, /, %, (+), =, ==, ===, <, >, <=, >=.
  3. &&, ||, !.
1 Like
  1. Operators act as an object that can manipulate values. They are also used to represent basic functions.

  2. Binary operators are operators that use arithmetic such as addition, subtraction, multiplication, division etc. (+, -, =, /, *), as well as <, >, = (greater than, less than, equal to.

  3. Logical operators are in a sense, things that make sense in a sentence.
    And (&&), Or (||), Not (!)

1 Like
  1. What are operators?
  • operators are symbols that facilitate a boolean operation.
  1. What binary operators do you know?
  • There is: < > == ===
  1. What logical operators do you know?
  • I know: && || !
1 Like