-
Notifications
You must be signed in to change notification settings - Fork 24
Operators
The following operators are available, in order of precedence:
Category | Operators |
---|---|
Postfix |
x.y , x[y] , x(y) , x++ , x--
|
Prefix |
-x , !x , ++x , --x , ~x
|
Multiplication |
* , / , % , **
|
Addition |
+ , -
|
BitShift |
<< , >>
|
BitAnd | & |
BitXor | ^ |
BitOr | | |
Relational |
> , >= , < , <= , in
|
Equality | == , != |
Conditional And | && |
Conditional Or | || |
Ternary | [[?:
|
Assign |
= , += , -= , *= , /= , %= , **= , &= , |= , ^= , <<= , >>= , [[|>
|
These are the rules the equality operators (==
, !=
) follow:
- Values of different types will never be equal.
-
number
andstring
types of the same value will always be equal. -
object
,array
, andfunction
types will only be equal if they refer to the same instance, not value. -
true
,false
,null
, andundefined
are only equal with themselves.
The relational operators (>
, >=
, <
, <=
) can only be used on number
and string
values. When used on string
values the result allows you to determine sort order.
The conditional and/or operators (&&
, ||
) test if [[values evaluate to true
|Conditionals#evaluation]]. The result of the operation will be the last evaluated value, which doesn't need to be true
or false
.
&&
requires both values to evaluate to true
while ||
only needs one value to evaluate to true
.
Both operators support short circuiting. This means the right side of &&
will not be evaluated if the left side evaluates to false
, or the right side of ||
will not be evaluated if the left side evaluates to true
.
This behavior can used in many different ways, like providing default values:
fun square(num) {
num = num || 100;
return num * num;
}
var a = square(10); // 100
var b = square(); // 10000
The left-hand side of an assignment operator must be one of the following: a variable name, an x.y
expression, or an x[y]
expression. The right-hand side must contain a value which is to be stored in the location given to the left.
Combination assignment operators are provided for most operations. These operators modify the existing value instead of overwriting it. For example, x = x + 5
could be written as x += 5
.