What are operators?
—they are symbol like +, =, -, /, *, %, etc, which are placed between two values to create new values
What are binary operators do you know?
—they are < or >
What logical operators do you know?
—they are and &&, or ||, and not !
1.) Operators are symbols and also words that perform various functions when placed between two values and the result is a new value. Operators give a desired function to a set of values and determine what the output value will be by the specific use of the operators in a particular sequence of values.
2.) Some binary operators are the < greater than and > less than symbols and the - operator, which can be both binary and unary.
3.) And, Or, and Not are logical operators and expressed as &&, I I , !.
-
Operators are signs and words that are used to perform operations on more than one value. There are binary and unary, which means only one value is used as the operator.
-
- , - , * , / , % , bool
3.|| , &&
-
What are operators?
Operators are symbols that signify instructions to the computer to inspect, evaluate, compare, or manipulate values stored in computer memory. -
What binary operators do you know?
Some examples of binary operators include the basic arithmetic operators (+, -, *, /, etc.) and comparison operators (=, ==, !=, etc.). -
What logical operators do you know?
Examples of logical operators include AND (&&), OR (||), and NOT (!).
I think unary operators differ from binary operators because the former act on only one value.
Eric
-
What are operators?
operators are things that cause an action to a variable. -
What binary operators do you know?
addition, average, subtraction, multiplication, division, <,>,= -
What logical operators do you know?
and &&, or ||
- Operators are used to assign values, compare values, perform arithmetic operations and more .
-
(greater than) and < (lesser than) signs and more
- && (and), || (or), ! (not, flips the value)
1.Operators perform an action on one or more values to produce results.
2.The binary operators that I currently know are, +, -, *, /, >, <, and ==
3.The logical operators that I currently know are, &&, ||, !
- operators is something you can to the values to get results
2.<is maller than, >is greater than, ==is equal to, !=is not equal to, >=greater than or equal to, <=less than or equal to
- && denotes and, it only gives true if two values are true. || denotes or it will give true if the opposite is stated, gives not true(!true). it will return false and !false will return true
- Operators are used to combine and transform values in JS.
- Binary operators are: +, -, *, / and %.
- Logical operators are && (and) and II (or).
-
What are operators?
Operators are mathematical processes which return results. -
What binary operators do you know?
multiply *
divide /
addition +
subtraction -
modulo %
greater than >
less than <
equality ==
equality in both type and value ===
inequality !== -
What logical operators do you know?
AND &&
OR ||
NOT !
Ternary Value ?:
- An operator is a symbol or text that performs an action on one or multiple operands, such as arithmetical operations, concatenate strings, get the type of some value, compare or add logic.
- Arithmetic or assignment operators(+, -, *, /), string operator (+), comparison operators (==, !=, ===, !==, >, <, >=, <=), logical operators (&&, ||, !).
- And (&&), or (||), not (!).
1. operators are a type of symbol describing an action that has to take place with the given values.
2. binary operators are operators that have 2 simple types of answer True and False. Or simply 'Booleans'.
binary operators are such as follows >=(greater than or equal to),
<=(less than orequal to),==(equal to), and!=(not equal to).
3. javascript supports 3 types of logical operators : 'and', 'or' and 'not'. with their operator symbols
being as follows - '&&', '||' and '?
-
Operatos are used to assign value
-
The Arithmetic operations
3.Logical operation are And,Or,Not
- operators are symbols that can mathematically manipulate other values
- multiplication(*), additions (+), contractions (-), divisions (-)
- and ( &&) or (||) not (!)
- Operators do actions on values.
- +, -, *, / are binary operators.
- <, >, = are logical operators.
-
Operators are signs and symbols that is put in between values that will perform functions like to solve and evaluate the given values which will result into a new value.
-
Multiply or times *
Division or divide /
Addition or plus +
Subtraction or minus -
Modulo or remainder %
greater than >
less than <
equal ==
not equal !=
greater than or equal >=
less than or equal <=
precisely equal ===
not precisely equal !== -
And &&
Or ||
Not !
-
What are operators?
operations that can be applied to values themselves. -
What binary operators do you know?
== equals
!= not equal to
larger than
< smaller than
-
What logical operators do you know?
&& and
|| or
! flips value
and some of the before mentioned last question
- Operators are applied on values to get a result.
- +, -, /, *, >, <, ==, ===, !=, <=, >=, !==, %
-
- && : AND
- || : OR
- ! : NOT