0
what does == mean edit thanks guys
5 ответов
+ 5
== is the operator to test for equality. For example, (3*2==6) is True, while (6*9==42) is False. Don't mix it up with =, which is the assignment operator.
To test for inequality, use != or <>.
Other comparison operators: > (greater than), < (lower than), >= (greater or equal), <= (lower or equal).
+ 2
EQUALLY OPERATOR:
The equality operator (==) is used to compare two values or expressions. It is used to compare numbers, strings, Boolean values, variables, objects, arrays, or functions. The result is TRUE if the expressions are equal and FALSE otherwise.
ASSIGNMENT OPERATOR:
The assignment operator (=) is used to assign a value to a variable, element of an array, or property of an object ..
+ 1
'==' is an operator that checks whether what is in it's left hand side equals to what is in it's right hand side.
e.g A == B which can read as is A equal to B?
0
Boolean equal
0
equal to