Boolean Expressions Reading assignment

  1. Operators compare or manipulate values.
  2. Greater than, less than, equal to and *, /, +, -.
  3. Logical operators are and / or.
  1. actions such as -,+,*,/,%
  2. boolean - true - false, yes - no, on - off
  3. &&,||, !, <,>,==,===,
  • What are operators?
    Symbol(s) that evaluate 1,2, or 3 different values.
  • What binary operators do you know?
    +, -, %, /, *
  • What logical operators do you know?
    and (&&), not (!=), or (||)

What are the operators?
Operators symbols that are used to carry out certain operations like comparisons, additions, subtractions e.t.c.on values
What binary operators do you know?
±/*==<>
What logical operators do you know?
&&,|| , !

  1. JavaScript operators are used to
  • Assign values
  • Compare values
  • Perform arithmetic operations
  • Comparison operations
  • Assignment operators
  • Conditional or ternary operations
  1. The > & < signs are the traditional symbols for “is greater than” & “less than,”.
    A binary operator is an operator that operates on two operands & manipulates them to return a result. Operators are represented by special characters or by keywords & provide an easy way to compare numerical values or characters strings.

  2. JavaScript supports three logical operators: and, or & not. These can be used to “reason” about Booleans.

  • The && operators represents logical and.
  • The || operator denotes logical or.
  • Not is written as an exclamation mark (!).
  1. What are operators? Struggling to actually be able to define this? I may have it now. The “Operator” is the command that defines the type of Boolean response you’re looking for.
  2. What binary operators do you know? +, -, *, /, % as well as ==, !=, ===, !==, <, >, <=, >= and finally &&, ||
  3. What logical operators do you know? And && / Or || and Not !
  1. What are operators?
    Symbols used to perform an operation, the represent a value
  2. What binary operators do you know?
    <,>,<=,>=,==,!=
    3.What logical operators do you know?
    &&=and
    ||=or
    !=not
  1. Actions or verbs for the nouns or objects, which are values, strings or variables.
  2. +, -, /, *, >, <, ==, among others.
  3. II, &&, !
  1. Operators are the symbols used to change values to another one.

  2. +, -, /, *

  3. or, and, not

What are operators?
Putting an operator between two values will apply it to those values and produce a new value.

+ (addition)
- (subtraction)
* (multiplication)
\ (division)
% (remainder)

What binary operators do you know?
> (greater than) ex. “Bloolean (1 > 2)” —> false
< (less than) ex. “(1 < 2)” —> true
>= (greater than or equal to) ex. “Bloolean (1 >= 1)” —> true
<= (less than or equal to) ex. “(2 <= 1)” —> false
== (equal to) ex. “Boolean (null == undefined)” —> true
!= (not equal to) ex. “(2 != 1)” —> true
=== (precisly equal to) ex. “(false === 0)” —> false

What logical operators do you know?
&& (and) ex. “true && false” —> false
| | (or) ex. “true | | false” —> true
! (not) ex. “!true” —> false
(true ? 1 : 2) —> 1
(false ? 1 : 2) —> 2

  1. An operator is a symbol that tell Javascript to perform an operation on a value.
  2. */±%
  3. && || !
  1. What are operators?
    Operators are actions used on values
  2. What binary operators do you know?
    +,-,*,/,<,>,<=,>=,!=
  3. What logical operators do you know?
    And, Or, Not

1. What are operators? Operators are symbols or words that can do arithmetic operations, logical operations, comparisons and different types of evaluations on values, among other things.
2. What binary operators do you know? +, -, *, /, %, ^, ==, !=, ===, !==, <, >, <=, >=, &&, ||.
3. What logical operators do you know? && (and), || (or), ! (not), ? : (conditional or ternary operator).

What are operators?
Operators allow you to apply functions assign values ex - ;+ -or %
What binary operators do you know?
+
_
%

/
++

What logical operators do you know?
AND &&
OR II
NOT!

1. What are operators?
Operators are symbols or text which put in between values to produce a new value.

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

3. What logical operators do you know?
&&, ||, !,

:tada:
:tada:
:tada:
:tada:

What are operators? 
  • something that gives a value afer a ‘calculation’
    What binary operators do you know?
    *, /, +, -, %
    What logical operators do you know?
    &&, ||, !
  1. What are operators?
    Briefly put, operators are symbols that tell the computer what to do with values, e.g increment or decrement a desired value.

2.What binary operators do you know?
less than, greater than, equal or not equal to and the combinations that follow.

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

  1. What are operators? an operator is a character that represents an action.

  2. What binary operators do you know?:
    Examples of binary operators are:<,>, ==, = >= (greater than or equal to), <= (less than or
    equal to), == (equal to), and !=

  3. What logical operators do you know? &&, | |, !

  1. What are operators?
    They are symbols that add or subtract values.

  2. What binary operators do you know?
    +,-,/,*

  3. What logical operators do you know?
    &&,||,===,!==

What are operators?
JavaScript operators are used to assign values, compare values, perform arithmetic operations, and more.

What binary operators do you know?
Comparisons like greater than (> and >=), smaller than (< and <=), equality (== or ===) or inequality (!= or !==), mathematical operators like +, -, *, / and %

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