This translation is incomplete. Please help translate this article from English.
About this Reference
The JavaScript reference serves as a repository of facts about the JavaScript language. The entire language is described here in detail. As you write JavaScript code, you'll refer to these pages often (thus the title "JavaScript reference"). If you're learning JavaScript, or need help understanding some of its capabilities or features, check out the JavaScript guide.
The JavaScript language is intended to be used within some larger environment, be it a browser, server-side scripts, or similar. For the most part, this reference attempts to be environment-agnostic and does not target a web browser environment.
Where to find JavaScript information
JavaScript documentation of core language features (pure ECMAScript, for the most part) includes the following:
- The JavaScript guide
- The JavaScript reference
If you are new to JavaScript, start with the guide. Once you have a firm grasp of the fundamentals, you can use the reference to get more details on individual objects and language constructs.
Structure of the reference
In the JavaScript reference you can find the following chapters:
- Standard built-in objects
- This chapter documents all the JavaScript standard built-in objects, along with their methods and properties.
- Statements and declarations
- JavaScript applications consist of statements with an appropriate syntax. A single statement may span multiple lines. Multiple statements may occur on a single line if each statement is separated by a semicolon. This isn't a keyword, but a group of keywords.
- Expressions and operators
- This chapter documents all the JavaScript language operators, expressions and keywords.
- Functions
- Chapter about JavaScript functions.
- Classes
- Chapter about JavaScript classes introduced in ECMAScript 2015.
- Errors
- Chapter about specific errors, exceptions and warnings thrown by JavaScript.
- New in JavaScript
- Chapter about JavaScript version history.
More reference pages
Global Objects
Functions and function scope
Statements
- JavaScript
- Tutorials:
- Complete beginners
- JavaScript Guide
- Introduction
- Grammar and types
- Control flow and error handling
- Loops and iteration
- Functions
- Expressions and operators
- Numbers and dates
- Text formatting
- Regular expressions
- Indexed collections
- Keyed collections
- Working with objects
- Details of the object model
- Iterators and generators
- Meta programming
- Intermediate
- Advanced
- References:
- Built-in objects
- Array
- ArrayBuffer
- AsyncFunction
- Atomics
- Boolean
- DataView
- Date
- Error
- EvalError
- Float32Array
- Float64Array
- Function
- Generator
- GeneratorFunction
- Infinity
- Int16Array
- Int32Array
- Int8Array
- InternalError
- Intl
- Intl.Collator
- Intl.DateTimeFormat
- Intl.NumberFormat
- JSON
- Map
- Math
- NaN
- Number
- Object
- Promise
- Proxy
- RangeError
- ReferenceError
- Reflect
- RegExp
- SIMD
- SIMD.Bool16x8
- SIMD.Bool32x4
- SIMD.Bool64x2
- SIMD.Bool8x16
- SIMD.Float32x4
- SIMD.Float64x2
- SIMD.Int16x8
- SIMD.Int32x4
- SIMD.Int8x16
- SIMD.Uint16x8
- SIMD.Uint32x4
- SIMD.Uint8x16
- Set
- SharedArrayBuffer
- String
- Symbol
- SyntaxError
- TypeError
- TypedArray
- URIError
- Uint16Array
- Uint32Array
- Uint8Array
- Uint8ClampedArray
- WeakMap
- WeakSet
- WebAssembly
- decodeURI()
- decodeURIComponent()
- encodeURI()
- encodeURIComponent()
- escape()
- eval()
- isFinite()
- isNaN()
- null
- parseFloat()
- parseInt()
- undefined
- unescape()
- uneval()
- Expressions & operators
- Arithmetic operators
- Array comprehensions
- Assignment operators
- Bitwise operators
- Comma operator
- Comparison operators
- Conditional (ternary) Operator
- Destructuring assignment
- Expression closures
- Generator comprehensions
- Grouping operator
- Legacy generator function expression
- Logical Operators
- Object initializer
- Operator precedence
- Property accessors
- Spread syntax
- async function expression
- await
- class expression
- delete operator
- function expression
- function* expression
- in operator
- instanceof
- new operator
- new.target
- super
- this
- typeof
- void operator
- yield
- yield*
- Statements & declarations
- Functions
- Classes
- Errors
- Error: Permission denied to access property "x"
- InternalError: too much recursion
- RangeError: argument is not a valid code point
- RangeError: invalid array length
- RangeError: invalid date
- RangeError: precision is out of range
- RangeError: radix must be an integer
- RangeError: repeat count must be less than infinity
- RangeError: repeat count must be non-negative
- ReferenceError: "x" is not defined
- ReferenceError: assignment to undeclared variable "x"
- ReferenceError: can't access lexical declaration`X' before initialization
- ReferenceError: deprecated caller or arguments usage
- ReferenceError: invalid assignment left-hand side
- ReferenceError: reference to undefined property "x"
- SyntaxError: "0"-prefixed octal literals and octal escape seq. are deprecated
- SyntaxError: "use strict" not allowed in function with non-simple parameters
- SyntaxError: "x" is a reserved identifier
- SyntaxError: JSON.parse: bad parsing
- SyntaxError: Malformed formal parameter
- SyntaxError: Unexpected token
- SyntaxError: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
- SyntaxError: a declaration in the head of a for-of loop can't have an initializer
- SyntaxError: applying the 'delete' operator to an unqualified name is deprecated
- SyntaxError: for-in loop head declarations may not have initializers
- SyntaxError: function statement requires a name
- SyntaxError: identifier starts immediately after numeric literal
- SyntaxError: illegal character
- SyntaxError: invalid regular expression flag "x"
- SyntaxError: missing ) after argument list
- SyntaxError: missing ) after condition
- SyntaxError: missing : after property id
- SyntaxError: missing ; before statement
- SyntaxError: missing = in const declaration
- SyntaxError: missing ] after element list
- SyntaxError: missing formal parameter
- SyntaxError: missing name after . operator
- SyntaxError: missing variable name
- SyntaxError: missing } after function body
- SyntaxError: missing } after property list
- SyntaxError: redeclaration of formal parameter "x"
- SyntaxError: return not in function
- SyntaxError: test for equality (==) mistyped as assignment (=)?
- SyntaxError: unterminated string literal
- TypeError: "x" has no properties
- TypeError: "x" is (not) "y"
- TypeError: "x" is not a constructor
- TypeError: "x" is not a function
- TypeError: "x" is not a non-null object
- TypeError: "x" is read-only
- TypeError: More arguments needed
- TypeError: can't access dead object
- TypeError: can't define property "x": "obj" is not extensible
- TypeError: can't delete non-configurable array element
- TypeError: can't redefine non-configurable property "x"
- TypeError: cyclic object value
- TypeError: invalid 'in' operand "x"
- TypeError: invalid Array.prototype.sort argument
- TypeError: invalid arguments
- TypeError: invalid assignment to const "x"
- TypeError: property "x" is non-configurable and can't be deleted
- TypeError: setting getter-only property "x"
- TypeError: variable "x" redeclares argument
- URIError: malformed URI sequence
- Warning: -file- is being assigned a //# sourceMappingURL, but already has one
- Warning: 08/09 is not a legal ECMA-262 octal constant
- Warning: Date.prototype.toLocaleFormat is deprecated
- Warning: JavaScript 1.6's for-each-in loops are deprecated
- Warning: String.x is deprecated; use String.prototype.x instead
- Warning: expression closures are deprecated
- Warning: unreachable code after return statement
- X.prototype.y called on incompatible type
- Misc
- New in JavaScript
- ECMAScript 2015 support in Mozilla
- ECMAScript 5 support in Mozilla
- ECMAScript Next support in Mozilla
- Firefox JavaScript changelog
- New in JavaScript 1.1
- New in JavaScript 1.2
- New in JavaScript 1.3
- New in JavaScript 1.4
- New in JavaScript 1.5
- New in JavaScript 1.6
- New in JavaScript 1.7
- New in JavaScript 1.8
- New in JavaScript 1.8.1
- New in JavaScript 1.8.5
- Documentation:
- Useful lists
- Contribute
JavaScript applications consist of statements with an appropriate syntax. A single statement may span multiple lines. Multiple statements may occur on a single line if each statement is separated by a semicolon. This isn't a keyword, but a group of keywords.
Statements and declarations by category
For an alphabetical listing see the sidebar on the left.
Control flow
Block- A block statement is used to group zero or more statements. The block is delimited by a pair of curly brackets.
break- Terminates the current loop, switch, or label statement and transfers program control to the statement following the terminated statement.
continue- Terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration.
Empty- An empty statement is used to provide no statement, although the JavaScript syntax would expect one.
if...else- Executes a statement if a specified condition is true. If the condition is false, another statement can be executed.
switch- Evaluates an expression, matching the expression's value to a case clause, and executes statements associated with that case.
throw- Throws a user-defined exception.
try...catch- Marks a block of statements to try, and specifies a response, should an exception be thrown.
Declarations
var- Declares a variable, optionally initializing it to a value.
let- Declares a block scope local variable, optionally initializing it to a value.
const- Declares a read-only named constant.
Functions and classes
function- Declares a function with the specified parameters.
function*- Generators functions enable writing iterators more easily.
async function- Declares an async function with the specified parameters.
return- Specifies the value to be returned by a function.
class- Declares a class.
Iterations
do...while- Creates a loop that executes a specified statement until the test condition evaluates to false. The condition is evaluated after executing the statement, resulting in the specified statement executing at least once.
for- Creates a loop that consists of three optional expressions, enclosed in parentheses and separated by semicolons, followed by a statement executed in the loop.
-
for each...in - Iterates a specified variable over all values of object's properties. For each distinct property, a specified statement is executed.
for...in- Iterates over the enumerable properties of an object, in arbitrary order. For each distinct property, statements can be executed.
for...of- Iterates over iterable objects (including arrays, array-like objects, iterators and generators), invoking a custom iteration hook with statements to be executed for the value of each distinct property.
while- Creates a loop that executes a specified statement as long as the test condition evaluates to true. The condition is evaluated before executing the statement.
Others
debugger- Invokes any available debugging functionality. If no debugging functionality is available, this statement has no effect.
export- Used to export functions to make them available for imports in external modules, another scripts.
import- Used to import functions exported from an external module, another script.
label- Provides a statement with an identifier that you can refer to using a
breakorcontinuestatement.
-
with - Extends the scope chain for a statement.
Specifications
| Specification | Status | Comment |
|---|---|---|
| ECMAScript 1st Edition (ECMA-262) The definition of 'Statements' in that specification. |
Standard | Initial definition |
| ECMAScript 3rd Edition (ECMA-262) The definition of 'Statements' in that specification. |
Standard | |
| ECMAScript 5.1 (ECMA-262) The definition of 'Statements' in that specification. |
Standard | |
| ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'ECMAScript Language: Statements and Declarations' in that specification. |
Standard | New: function*, let, for...of, yield, class |
| ECMAScript Latest Draft (ECMA-262) The definition of 'ECMAScript Language: Statements and Declarations' in that specification. |
Living Standard |
Browser compatibility
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Legacy generator function | No | No | 2 — 58 | No | No | No |
async function | 55 | Yes | 52 | No | 42 | 10.1 |
block | Yes | Yes | Yes | Yes | Yes | Yes |
break | Yes | Yes | Yes | Yes | Yes | Yes |
class | 42 | Yes | 45 | No | ? | 10.1 |
const | 21 | Yes | 361 2 | 11 | Yes | 5.1 |
continue | Yes | Yes | Yes | Yes | Yes | Yes |
debugger | Yes | Yes | Yes | Yes | Yes | Yes |
do...while | Yes | Yes | Yes | 6 | Yes | Yes |
Empty statement (;) | Yes | Yes | Yes | Yes | Yes | Yes |
export | 61 | 153 | 544 | No | 47 | 10.1 |
for | Yes | Yes | Yes | Yes | Yes | Yes |
for each...in | No | No | 1.5 — 57 | No | No | No |
for...in | Yes | Yes | Yes | 6 | Yes | Yes |
for...of | 38 | 12 | 135 | No | 25 | 8 |
function | Yes | Yes | Yes | Yes | Yes | Yes |
function* | 39 | 13 | 26 | No | 26 | 10 |
if...else | Yes | Yes | Yes | Yes | Yes | Yes |
import | 61 | 153 | 544 | No | 47 | 10.1 |
label | Yes | Yes | Yes | Yes | Yes | Yes |
let | 41 | 12 | 446 7 8 | 11 | 17 | 10 |
return | Yes | Yes | Yes | Yes | Yes | Yes |
switch | Yes | Yes | Yes | Yes | Yes | Yes |
throw | Yes | Yes | Yes | Yes | Yes | Yes |
try...catch | Yes | Yes | Yes | 6 | Yes | Yes |
var | Yes | Yes | Yes | Yes | Yes | Yes |
while | Yes | Yes | Yes | Yes | Yes | Yes |
with | Yes | Yes | Yes | Yes | Yes | Yes |
| Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
|---|---|---|---|---|---|---|---|
| Legacy generator function | No | No | No | 4 — 58 | No | No | No |
async function | Yes | 55 | Yes | 52 | No | 42 | 10.1 |
block | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
break | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
class | 42 | 42 | Yes | 45 | No | ? | 10.1 |
const | Yes | Yes | Yes | 361 2 | 11 | Yes | Yes |
continue | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
debugger | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
do...while | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
Empty statement (;) | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
export | No | 61 | Yes | 544 | No | 47 | 10.1 |
for | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
for each...in | No | No | No | 4 — 57 | No | No | No |
for...in | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
for...of | 5.1 | Yes | 12 | Yes | No | 25 | 8 |
function | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
function* | Yes | 39 | Yes | 26 | No | Yes | 10 |
if...else | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
import | No | 61 | Yes | 544 | No | 47 | 10.1 |
label | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
let | 41 | 41 | 12 | 446 7 8 | ? | 17 | 10 |
return | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
switch | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
throw | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
try...catch | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
var | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
while | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
with | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
1. Prior to Firefox 13, const is implemented, but re-assignment is not failing.
2. Prior to Firefox 46, a TypeError was thrown on redeclaration instead of a SyntaxError.
3. From version 15: this feature is behind the Experimental JavaScript Features preference.
4. From version 54: this feature is behind the dom.moduleScripts.enabled preference. To change preferences in Firefox, visit about:config.
5. Prior to Firefox 51, using the for...of loop construct with the const keyword threw a SyntaxError ("missing = in const declaration").
6. Prior to Firefox 44, let is only available to code blocks in HTML wrapped in a <script type="application/javascript;version=1.7"> block (or higher version) and has different semantics (e.g. no temporal dead zone).
7. Prior to Firefox 46, a TypeError is thrown on redeclaration instead of a SyntaxError.
8. Firefox 54 adds support of let in workers.
See also
Expressions and operators
For an alphabetical listing see the sidebar on the left.
Primary expressions
Basic keywords and general expressions in JavaScript.
this- The
thiskeyword refers to the function's execution context. function- The
functionkeyword defines a function expression. class- The
classkeyword defines a class expression. function*- The
function*keyword defines a generator function expression. yield- Pause and resume a generator function.
yield*- Delegate to another generator function or iterable object.
-
async function* - The
async functiondefines an async function expression. -
await - Pause and resume an async function and wait for the promise's resolution/rejection.
[]- Array initializer/literal syntax.
{}- Object initializer/literal syntax.
/ab+c/i- Regular expression 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"]). new- The
newoperator creates an instance of a constructor. - new.target
- In constructors,
new.targetrefers to the constructor that was invoked bynew. super- The
superkeyword calls the parent constructor. ...obj- Spread syntax allows an expression to be expanded in places where multiple arguments (for function calls) or multiple elements (for array literals) are expected.
Increment and decrement
Postfix/prefix increment and postfix/prefix decrement operators.
A++- Postfix increment operator.
A--- Postfix decrement operator.
++A- Prefix increment operator.
--A- Prefix decrement operator.
Unary operators
A unary operation is operation with only one operand.
delete- The
deleteoperator deletes a property from an object. void- The
voidoperator discards an expression's return value. typeof- The
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.
Arithmetic operators
Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value.
+- Addition operator.
-- Subtraction operator.
/- Division operator.
*- Multiplication operator.
%- Remainder operator.
**- Exponentiation operator.
Relational operators
A comparison operator compares its operands and returns a Boolean value based on whether the comparison is true.
in- The
inoperator determines whether an object has a given property. instanceof- The
instanceofoperator determines whether an object is an instance of another object. <- Less than operator.
>- Greater than operator.
<=- Less than or equal operator.
>=- Greater than or equal operator.
Note: => is not an operator, but the notation for Arrow 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.
<<- Bitwise left shift operator.
>>- Bitwise right shift operator.
>>>- Bitwise unsigned right shift operator.
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 are typically used with boolean (logical) values, and when they are, they return a boolean value.
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.
[a, b] = [1, 2]
{a, b} = {a:1, b:2}-
Destructuring assignment allows you to assign the properties of an array or object to variables using syntax that looks similar to array or object literals.
Comma operator
,- The comma operator allows multiple expressions to be evaluated in a single statement and returns the result of the last expression.
Non-standard features
- Legacy generator function
- The
functionkeyword can be used to define a legacy generator function inside an expression. To make the function a legacy generator, the function body should contains at least oneyieldexpression. - Expression closures
- The expression closure syntax is a shorthand for writing simple function.
-
[for (x of y) x] - Array comprehensions.
-
(for (x of y) y) - Generator comprehensions.

