- Operaters are symbols than perform certain actions. They are the verbs of this language. Some are typical like math symbols =±/* while others are unique to the language.
2.Some examples of binary operators are <>= e.g. 3>2 or 64=46 there are apparantly many more to learn like the logical ones in answer 3. are also binary. - The logical operaters or &&,||,!
-
What are operators?
JavaScript operators are used to assign values, compare values, perform arithmetic operations and more. -
What binary operators do you know?
+, -, *, /, %, less than (<), greater than (>), equal to (==), less than or equal to (< =), greater than or equal to (> =), not equal to (! =) -
What logical operators do you know?
JavaScript supports 3 logical operators: and (&&), or (||), and not (!).
i. What are operators? An ‘operator’ is a symbol that represents an action or process the manipulates a value or another operator.
ii.What binary operators do you know? +,-,*,/,%,<,<=, >,>=,++,–
iii.What logical operators do you know? ==, !=, ===, !==., ||, &&, !
Hi @Pellerin
I think we can’t consider ( ==, !=, ===, !== ) as logical operators because a logical operator allow you to combine multiple Boolean expressions or values.
In the Ecma language specification they are specificaly described as Equality Operators.
https://ecma-international.org/ecma-262/5.1/#sec-11.9
-
What are operators?
⁃ operators are in language terms the “verb” or the action that is being done. Example (+, -, /, *, >, =, etc.) -
What binary operators do you know?
⁃ I think binary is just the fact that you’re taking two values. so most operators are binary which include( +, +=, -, -=, /, /=, %, <, <=, >, >=, &&, | |). I googled it and theres a lot more but at the time these were the only i could recall from the top of my head. -
What logical operators do you know?
⁃ The logical operators are &&, and | |.
What are operators?
a calculation\function that is made on data
What binary operators do you know?
boolean
What logical operators do you know?
&& and
|| or
! NOT
you missed the Binary part
Operators I agree with you but the Binary side of the house can only produce one of two results
that goes to the basic on off switching inside the Chip
addition and division are Binary operators?
depends on the logic you are trying to Achieve
I think most people are forgetting that we are just in Binary mode
adding and subtraction , division all that stuff is outside of True False On Off parameters
-
Operaters are used for tetermining if something is true of false.
-
I know of these binary operaters: < greaterthan, > lessthan, == and equal to, + addition, - subtration, *
and Mutiplication. -
These are the logicall operaters: y x.
What are operators?
In arithmetic calculations, operators are characters such as +, -, / that are placed between numbers (values). They determine outcomes or results.
In “strings” the + operator concatenates (joins together) the strings either side of it.
What binary operators do you know?
“Greater than” >
“Less than” <
“Less than or equal to” <=
“more than or equal to” >=
“Equal to” ==
“Not equal to” !=
What logical operators do you know?
“And” - &&
“Or” - | |
“Not” - ! Which can precede true or false
Boolean Expressions
What are operators?
Operators use values to generate an outcome
What binary operators do you know?
!=, ==, <,>, <=, =>
= (greater than or equal to), <= (less than or equal to), == (equal to), and != (not equal to)
What logical operators do you know?
&& (and), || (or), ! (not)
1.What are operators?
Operators allow you to evaluate conditions and do calculations
2.What binary operators do you know?
Operators that use two values
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?
- //Add
- //Subtract
/ //Divided by
- //Multiple
% //Modulus
< //Less than
//Greater than
&& //AND
|| //OR
<< //Left shift//Right shift
== //Equal
!= //Not equal
- What logical operators do you know?
&& //AND
|| //OR
I don’t know what happened to the format of my answer. Is there any way to edit this?
Hello @wenwill
yes you can click on the pen icon to edit your post.
You have used special character which are usually used for formatting test.
If you use special character just select all the text then click on this icon ‘</>’
- Operators are different types of action that can be applied to different values.
2.== != < > <= >= + - / % * - && ||
you can edit the post if you want to.
But it is ok, we understand what you mean in the answer.
ivo
- Operators can be defined as symbols allowing the program to process actions with values.
-
,<,<=,>=,==,!=
- &&, ||, !
What are operators?
Operators are symbols that define actions regarding the manipulation of values
What binary operators do you know?
less than (<), greater than, (>), equal to (==), and various combinations of the three.
What logical operators do you know?
And, or and not