- Characters than control the logic and math output of a program.
- Boolean
- AND, OR, NOT
also: <>=+ for math.
-
Operators are symbols (+ * - \ %) or words (typeof) which are used to combine and transform values. There are binary, logical, unary and ternary operators.
-
Binary operators are --: arithmetic, concatenation, Boolean and assignment.
-
Logical operators are–: &&, //, ==, ! (which can be used to reason about Booleans).
- Operators are inputs that are functions or cause an action to happen, such as +,-,/,*
-Arithmetic Operators,Comparison Operators,Logical Operators,Assignment Operators,Conditional Operators
- && AND II OR and ! not
-
What are operators?
In JavaScript, operators operate on values and produce an output. -
What binary operators do you know?
+, -, *, /, %, <, >, <=, >=, ||, &&, ==, !=, ===, !== -
What logical operators do you know?
&&, ||
Homework on Boolean Expressions - Questions August 8, 2020
- What are operators?
Operators are data structures in JavaScript, that would use user defined data values to produce results.
- What binary operators do you know?
Binary operators take two operands that work together to produce results.
- What logical operators do you know?
Logical operators Boolean values that are used to reason coded operations.
-Hector A. Martinez
- In JavaScript operators are used to assigning values, perform arithmetic operations, compare values, assign conditions, logic
- Arithmetic, relational, logical, string, comparison, and assignment operators.
Plus (+)
Minus (-)
Multiplication (*)
Divide (/)
Equal (==)
Less than (<)
Greater than (>)
Greater than or equal to (>=)
Less than or equal to (<=) - And -> && ; Or-> || ; Not -> !
Good answers sir, but could you detail which are the keyword for each operator? EX: Addition +.
If you have any more questions, please let us know so we can help you!
Carlos Z.
[quote=“ivan, post:1, topic:3068”]
-
What are operators?
Operators are the symbols that calculate the values - What binary operators do you know?
-
- / *
-
What logical operators do you know?
&&, || and !
-
What are operators?
There are several types and are used to combine values and to change values. -
What binary operators do you know?
These are used in arithmetic calculations, they are + - * / % -
What logical operators do you know?
and &&, or ||, not !
1 - Values that generates outcomes
2 - +, -, *, /, %, ==, !=, ===, !==, <, >, <=, >=’’
3 - &&, ||, !
- Operators are functions that are performed as a result of introducing one or two variables into script code commands. For instance &&, ==, ===, /, +, *, -, % ect.
- Here are some commonly used binary operators: <, >, <=, >=, ==, !=.
- The logical operators that I know are: || (= or), ! (= not), && (= and)
- Operators are symbols that take one or more values and create a new value
- All of arithmetic operators, boolean.
- ? ! || & &
- What are operators?
It is a tool you can use to take one or more values as input(s) and combining/modifying them to different outputs. - What binary operators do you know?
-><: “less than” and “greater than”
-+, -, / and *
-<=, >=, !=, == and === - What logical operators do you know?
-and: &&
-or: ||
-not: !
1 Operators are used for performing arithmetic operations, compare values and assign conditions in JavaScript
2.Binary operators (+) (-) ( *) ( /) (II) (<) (>) (==) (&&)
3.Logical operators
&& :and
II : or
! : not
<,> ==, =>, =< . Comparison operators
- What are operators?
Operators are (+ - * /) used on values to get result. - What binary operators do you know?
+
,-
,*
,%
,/
,<
,<=
,>
,>=
,==
,!=
,&&
,||
- What logical operators do you know?
|| (OR), && (AND), ! (NOT)
- Operators are functions that manipulate values and generate certain outcomes.
- Addition +, multiplication *, subtraction -, division /, modulus %.
- And &&, Or ||, not !.
-
Operators are the symbol to make the action intended.
-
==, ===, >, <, >=, <=
-
Anything … is true, anything… is false, etc.
-
-
-
- / = < > <= >= %
-
-
- true. false
- && || !
What are operators?
Operators can be used together with one, two or three values to get out another value, they are called unary, binary or ternary operators depending on the amount of values they can handle. The ones most people is used to are in the binary spectrum with +, -, *, / and are the same as the known mathematical operations we all know as addition, subtraction, multiplication and division. A lot of other operators can be used to control the flow of an program.
What binary operators do you know?
+, -, *, /, %, ==, =!, <, >
What logical operators do you know?
There are three different logical operators that can be applied to Boolean values and they are AND, OR, NOT.