Expressions and operators
This chapter documents all the JavaScript language operators, expressions and keywords.
In this article
Expressions and operators by category
For an alphabetical listing see the sidebar on the left.
Primary expressions
Basic keywords and general expressions in JavaScript. These expressions have the highest precedence (higher thanoperators).
thisThe
thiskeyword refers to a special property of an execution context.- Literals
Basic
null, boolean, number, and string literals.[]Array initializer/literal syntax.
{}Object initializer/literal syntax.
functionThe
functionkeyword defines a function expression.classThe
classkeyword defines a class expression.function*The
function*keyword defines a generator function expression.async functionThe
async functiondefines an async function expression.async function*The
async function*keywords define an async generator function expression./ab+c/iRegular expression literal syntax.
`string`Template literal syntax.
( )Grouping operator.
Left-hand-side expressions
Left values are the destination of an assignment.
- Property accessors
Member operators provide access to a property or method of an object (
object.propertyandobject["property"]).?.The optional chaining operator returns
undefinedinstead of causing an error if a reference isnullish (nullorundefined).newThe
newoperator creates an instance of a constructor.new.targetIn constructors,
new.targetrefers to the constructor that was invoked bynew.import.metaAn object exposing context-specific metadata to a JavaScript module.
superThe
superkeyword calls the parent constructor or allows accessing properties of the parent object.import()The
import()syntax allows loading a module asynchronously and dynamically into a potentially non-module environment.
Increment and decrement
Postfix/prefix increment and postfix/prefix decrement operators.
Unary operators
A unary operation is an operation with only one operand.
deleteThe
deleteoperator deletes a property from an object.voidThe
voidoperator evaluates an expression and discards its return value.typeofThe
typeofoperator 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.
awaitPause and resume an async function and wait for the promise's fulfillment/rejection.
Arithmetic operators
Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value.
Relational operators
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.
instanceofThe
instanceofoperator determines whether an object is an instance of another object.inThe
inoperator determines whether an object has a given property.
Note:=> is not an operator, but the notation forArrow functions.
Equality operators
The result of evaluating an equality operator is always of type boolean based on whether the comparison is true.
Bitwise shift operators
Operations to shift all bits of the operand.
Binary bitwise operators
Bitwise operators treat their operands as a set of 32 bits (zeros and ones) and return standard JavaScript numerical values.
Binary logical operators
Logical operators implement boolean (logical) values and haveshort-circuiting behavior.
Conditional (ternary) operator
(condition ? ifTrue : ifFalse)The conditional operator returns one of two values based on the logical value of the condition.
Assignment operators
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.
[a, b] = arr,{ a, b } = objDestructuring allows you to assign the properties of an array or object to variables using syntax that looks similar to array or object literals.
Yield operators
Spread syntax
...objSpread 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.
Comma operator
,The comma operator allows multiple expressions to be evaluated in a single statement and returns the result of the last expression.
Specifications
Browser compatibility
Loading…