Expressions and operators by category
For an alphabetical listing see the sidebar on the left.
Basic keywords and general expressions in JavaScript. These expressions have the highest precedence (higher than
).
The this keyword refers to a special property of an execution context.
Basic null, boolean, number, and string literals.
Array initializer/literal syntax.
Object initializer/literal syntax.
The function keyword defines a function expression.
The class keyword defines a class expression.
The function* keyword defines a generator function expression.
The async function defines an async function expression.
The async function* keywords define an async generator function expression.
Regular expression literal syntax.
Template literal syntax.
Grouping operator.
Left values are the destination of an assignment.
Member operators provide access to a property or method of an object (object.property and object["property"]).
The optional chaining operator returns undefined instead of causing an error if a reference is
(
or
).
The new operator creates an instance of a constructor.
In constructors, new.target refers to the constructor that was invoked by
.
An object exposing context-specific metadata to a JavaScript module.
The super keyword calls the parent constructor or allows accessing properties of the parent object.
The import() syntax allows loading a module asynchronously and dynamically into a potentially non-module environment.
Postfix/prefix increment and postfix/prefix decrement operators.
Postfix increment operator.
Postfix decrement operator.
Prefix increment operator.
Prefix decrement operator.
A unary operation is an operation with only one operand.
The delete operator deletes a property from an object.
The void operator evaluates an expression and discards its return value.
The typeof operator determines the type of a given object.
The unary plus operator converts its operand to Number type.
The unary negation operator converts its operand to Number type and then negates it.
Bitwise NOT operator.
Logical NOT operator.
Pause and resume an async function and wait for the promise's fulfillment/rejection.
Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value.
Exponentiation operator.
Multiplication operator.
Division operator.
Remainder operator.
(Plus)Addition operator.
Subtraction operator.
A comparison operator compares its operands and returns a boolean value based on whether the comparison is true.
(Less than)Less than operator.
(Greater than)Greater than operator.
Less than or equal operator.
Greater than or equal operator.
The instanceof operator determines whether an object is an instance of another object.
The in operator determines whether an object has a given property.
The result of evaluating an equality operator is always of type boolean based on whether the comparison is true.
Equality operator.
Inequality operator.
Strict equality operator.
Strict inequality operator.
Operations to shift all bits of the operand.
Bitwise left shift operator.
Bitwise right shift operator.
Bitwise unsigned right shift operator.
Bitwise operators treat their operands as a set of 32 bits (zeros and ones) and return standard JavaScript numerical values.
Bitwise AND.
Bitwise OR.
Bitwise XOR.
Logical operators implement boolean (logical) values and have
behavior.
Logical AND.
Logical OR.
Nullish Coalescing Operator.
Conditional (ternary) operator
(condition ? ifTrue : ifFalse)
The conditional operator returns one of two values based on the logical value of the condition.
An assignment operator assigns a value to its left operand based on the value of its right operand.
Assignment operator.
Multiplication assignment.
Division assignment.
Remainder assignment.
Addition assignment.
Subtraction assignment
Left shift assignment.
Right shift assignment.
Unsigned right shift assignment.
Bitwise AND assignment.
Bitwise XOR assignment.
Bitwise OR assignment.
Exponentiation assignment.
Logical AND assignment.
Logical OR assignment.
Nullish coalescing assignment.
Destructuring allows you to assign the properties of an array or object to variables using syntax that looks similar to array or object literals.
Pause and resume a generator function.
Delegate to another generator function or iterable object.
Spread syntax allows an iterable, such as an array or string, to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected. In an object literal, the spread syntax enumerates the properties of an object and adds the key-value pairs to the object being created.
The comma operator allows multiple expressions to be evaluated in a single statement and returns the result of the last expression.
As the
What are statements, declarations, and expressions?
section explains, an expression is a fundamental building block that evaluates to a value. Statements, declarations, and expressions can all define specific slots where expressions are accepted. Where an expression contains slots for further nested expressions, the part(s) that are not slots are known as operators.
For example, the syntax for an
expression is expression + expression (if you read the spec, the operands are called AdditiveExpression and MultiplicativeExpression, which are both subsets of Expression, but that's the spec's mechanism for defining
and is irrelevant for our purposes). Apart from the two expression slots, the code entity it introduces is just +: the addition operator. Similarly, the syntax for a
expression is yield expression, so yield is known as the operator. In other words, each operator corresponds to an expression.
MDN also regards expressions without slots such as
as operators per the definition above, although we nearly always just refer to them as "syntax" or "expression".
An expression does not need to take a fixed number of slots. For example, the array literal expression, [expression, expression, expression], can take an arbitrary number of expression slots. The [,,] part might be called an "operator". MDN avoids this usage, but you may see it in functional programming languages like
.
The definition of operators gets fuzzier with certain other code entities: what if an expression has a slot that's not an expression, or a code entity combined with an expression does not make an expression? Do we still refer to that code entity as an operator?
In the
expression foo?.bar, foo is an expression, but bar must be an identifier and is not evaluated to a value. Do we still regard ?. as an operator?
In the
expression arg => body, body might be an expression (although it can also be a block body), and arg is just an argument list. Do we still regard => as an operator?
In the
...foo, foo is an expression, but the whole thing is not an expression because it does not evaluate to a value—it only makes sense in certain other expressions like function calls, array literals, and object literals. Do we still regard ... as an operator?
The term "operator" is not precisely defined in JavaScript, so MDN does not give a definitive answer. Our approach is to group all these constructs under "Operators" but avoid formally referring to them as operators. Many useful concepts about operators, such as
, still apply to them regardless of their exact nature.
Specification
ECMAScript® 2027 Language Specification# sec-this-keyword
ECMAScript® 2027 Language Specification# sec-assignment-operators
ECMAScript® 2027 Language Specification# sec-relational-operators
ECMAScript® 2027 Language Specification# sec-unary-plus-operator
ECMAScript® 2027 Language Specification# sec-super-keyword
ECMAScript® 2027 Language Specification# sec-built-in-function-objects
ECMAScript® 2027 Language Specification# sec-typeof-operator
ECMAScript® 2027 Language Specification# prod-PropertyDefinition
ECMAScript® 2027 Language Specification# sec-addition-operator-plus
ECMAScript® 2027 Language Specification# sec-unsigned-right-shift-operator
ECMAScript® 2027 Language Specification# sec-multiplicative-operators
ECMAScript® 2027 Language Specification# sec-delete-operator
ECMAScript® 2027 Language Specification# prod-OptionalExpression
ECMAScript® 2027 Language Specification# prod-SpreadElement
ECMAScript® 2027 Language Specification# prod-BitwiseXORExpression
ECMAScript® 2027 Language Specification# sec-logical-not-operator
ECMAScript® 2027 Language Specification# prod-BitwiseANDExpression
ECMAScript® 2027 Language Specification# prod-ImportMeta
ECMAScript® 2027 Language Specification# sec-bitwise-not-operator
ECMAScript® 2027 Language Specification# sec-class-definitions
ECMAScript® 2027 Language Specification# sec-async-function-definitions
ECMAScript® 2027 Language Specification# sec-left-shift-operator
ECMAScript® 2027 Language Specification# sec-comma-operator
ECMAScript® 2027 Language Specification# sec-postfix-increment-operator
ECMAScript® 2027 Language Specification# sec-equality-operators
ECMAScript® 2027 Language Specification# sec-unary-minus-operator
ECMAScript® 2027 Language Specification# prod-LogicalORExpression
ECMAScript® 2027 Language Specification# sec-postfix-decrement-operator
ECMAScript® 2027 Language Specification# sec-new-operator
ECMAScript® 2027 Language Specification# sec-destructuring-assignment
ECMAScript® 2027 Language Specification# prod-CoalesceExpression
ECMAScript® 2027 Language Specification# sec-async-generator-function-definitions
ECMAScript® 2027 Language Specification# prod-YieldExpression
ECMAScript® 2027 Language Specification# prod-FormalParameters
ECMAScript® 2027 Language Specification# sec-null-value
ECMAScript® 2027 Language Specification# prod-LogicalANDExpression
ECMAScript® 2027 Language Specification# sec-object-initializer
ECMAScript® 2027 Language Specification# prod-ArgumentList
ECMAScript® 2027 Language Specification# prod-BitwiseORExpression
ECMAScript® 2027 Language Specification# sec-property-accessors
ECMAScript® 2027 Language Specification# prod-MethodDefinition
ECMAScript® 2027 Language Specification# prod-AssignmentRestProperty
ECMAScript® 2027 Language Specification# sec-import-calls
ECMAScript® 2027 Language Specification# sec-destructuring-binding-patterns
ECMAScript® 2027 Language Specification# sec-signed-right-shift-operator
ECMAScript® 2027 Language Specification# sec-conditional-operator
ECMAScript® 2027 Language Specification# prod-AssignmentRestElement
ECMAScript® 2027 Language Specification# prod-ComputedPropertyName
ECMAScript® 2027 Language Specification# sec-function-definitions
ECMAScript® 2027 Language Specification# sec-exp-operator
ECMAScript® 2027 Language Specification# sec-generator-function-definitions
ECMAScript® 2027 Language Specification# sec-subtraction-operator-minus
ECMAScript® 2027 Language Specification# sec-void-operator
ECMAScript® 2027 Language Specification# sec-grouping-operator