This part of the JavaScript section on MDN serves as a repository of facts about the JavaScript language. Read more about this reference.
These global properties return a simple value; they have no properties or methods.
These global functions—functions which are called globally rather than on an object—directly return their results to the caller.
eval()
uneval()
isFinite()
isNaN()
parseFloat()
parseInt()
decodeURI()
decodeURIComponent()
encodeURI()
encodeURIComponent()
escape()
unescape()
These are the fundamental, basic objects upon which all other objects are based. This includes objects that represent general objects, functions, and errors.
Object
Function
Boolean
Symbol
Error
EvalError
InternalError
RangeError
ReferenceError
SyntaxError
TypeError
URIError
These are the base objects representing numbers, dates, and mathematical calculations.
These objects represent strings and support manipulating them.
These objects represent collections of data which are ordered by an index value. This includes (typed) arrays and array-like constructs.
Array
Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array
These objects represent collections which use keys; these contain elements which are iterable in the order of insertion.
SIMD vector data types are objects where data is arranged into lanes.
SIMD
SIMD.Float32x4
SIMD.Float64x2
SIMD.Int8x16
SIMD.Int16x8
SIMD.Int32x4
SIMD.Uint8x16
SIMD.Uint16x8
SIMD.Uint32x4
SIMD.Bool8x16
SIMD.Bool16x8
SIMD.Bool32x4
SIMD.Bool64x2
These objects represent and interact with structured data buffers and data coded using JavaScript Object Notation (JSON).
Additions to the ECMAScript core for language-sensitive functionalities.
This chapter documents all the JavaScript statements and declarations.
For an alphabetical listing see the sidebar on the left.
Block
break
continue
Empty
if...else
switch
throw
try...catch
var
let
const
function
function*
async function
return
class
do...while
for
for each...in
for...in
for...of
while
debugger
export
import
label
break
or continue
statement.with
This chapter documents all the JavaScript expressions and operators.
For an alphabetical listing see the sidebar on the left.
Basic keywords and general expressions in JavaScript.
this
this
keyword refers to the function's execution context.function
function
keyword defines a function expression.class
class
keyword defines a class expression.function*
function*
keyword defines a generator function expression.yield
yield*
async function*
async function
defines an async function expression.await
[]
{}
/ab+c/i
( )
Left values are the destination of an assignment.
object.property
and object["property"]
).new
new
operator creates an instance of a constructor.new.target
refers to the constructor that was invoked by new
.super
super
keyword calls the parent constructor....obj
Postfix/prefix increment and postfix/prefix decrement operators.
A++
A--
++A
--A
A unary operation is operation with only one operand.
delete
delete
operator deletes a property from an object.void
void
operator discards an expression's return value.typeof
typeof
operator determines the type of a given object.+
-
~
!
Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value.
+
-
/
*
%
**
A comparison operator compares its operands and returns a Boolean
value based on whether the comparison is true.
in
in
operator determines whether an object has a given property.instanceof
instanceof
operator determines whether an object is an instance of another object.<
>
<=
>=
Note: => is not an operator, but the notation for Arrow functions.
The result of evaluating an equality operator is always of type Boolean
based on whether the comparison is true.
Operations to shift all bits of the operand.
<<
>>
>>>
Bitwise operators treat their operands as a set of 32 bits (zeros and ones) and return standard JavaScript numerical values.
Logical operators are typically used with boolean (logical) values, and when they are, they return a boolean value.
&&
||
(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.
=
*=
/=
%=
+=
-=
<<=
>>=
>>>=
&=
^=
|=
[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.
,
function
keyword 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 one yield
expression.[for (x of y) x]
(for (x of y) y)
This chapter documents how to work with JavaScript functions to develop your applications.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference