HTML: Markup language
CSS: Styling language
JavaScript: Scripting language
Web APIs: Programming interfaces
All web technology
Learn web development
Discover our tools
Get to know MDN better
Esta página ha sido traducida del inglés por la comunidad. Aprende más y únete a la comunidad de MDN Web Docs.
View in English Always switch to English
Esta parte de la sección de Javascript en MDN sirve como un repositorio de hechos sobre el lenguaje Javascript. Lee más sobre esta referencia.
Objetos globales en Javascript, junto con sus métodos y propiedades.
globalThis
Infinity
NaN
undefined
eval()
isFinite()
isNaN()
parseFloat()
parseInt()
decodeURI()
decodeURIComponent()
encodeURI()
encodeURIComponent()
Object
Function
Boolean
Symbol
Error
EvalError
RangeError
ReferenceError
SyntaxError
TypeError
URIError
AggregateError
Number
BigInt
Math
Date
String
RegExp
Array
Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
BigInt64Array
BigUint64Array
Float32Array
Float64Array
Map
Set
WeakMap
WeakSet
ArrayBuffer
SharedArrayBuffer
DataView
Atomics
JSON
WeakRef
FinalizationRegistry
Promise
GeneratorFunction
AsyncGeneratorFunction
Generator
AsyncGenerator
AsyncFunction
Reflect
Proxy
Intl
Intl.Collator
Intl.DateTimeFormat
Intl.DisplayNames
Intl.ListFormat
Intl.Locale
Intl.NumberFormat
Intl.PluralRules
Intl.RelativeTimeFormat
WebAssembly
WebAssembly.Module
WebAssembly.Instance
WebAssembly.Memory
WebAssembly.Table
WebAssembly.CompileError
WebAssembly.LinkError
WebAssembly.RuntimeError
Declaraciones y sentencias en JavaScript
break
continue
if...else
switch
throw
try...catch
var
let
const
function
function*
async function
return
class
do...while
for
for...in
for...of
for await...of
while
debugger
export
import
label
with
Operadores y expresiones en JavaScript.
this
yield
yield*
await
[]
{}
/ab+c/i
( )
null
?.
new
new.target
import.meta
super
...obj
A++
A--
++A
--A
delete
void
typeof
+
-
~
!
/
*
%
**
in
instanceof
<
>
<=
>=
==
!=
===
!==
<<
>>
>>>
&
|
^
&&
||
??
(condition ? ifTrue : ifFalse)
=
*=
**=
/=
%=
+=
-=
<<=
>>=
>>>=
&=
^=
|=
&&=
||=
??=
[a, b] = [1, 2]
{a, b} = {a:1, b:2}
,
Este capítulo documenta como trabajar con las Funciones JavaScript para desarrollar tus aplicaciones.
argumentos