Skip to content

Reserved Words

These words cannot be used as identifiers (variable names, function names, etc.).

KeywordDescription
siIf condition
sinoElse
mientrasWhile loop
hacerDo-while loop
paraFor loop
enIteration (for-in)
cadaIteration (for-each)
romperBreak loop
continuarContinue to next iteration
retornarReturn from function
KeywordDescription
enteroInteger type
numeroDecimal number type
textoString type
logBoolean type
vacioVoid type (no value)
listaList type
jsnJSON object type
KeywordDescription
verdaderoTrue
falsoFalse
nuloNull value
KeywordDescription
yLogical AND
oLogical OR
noLogical NOT
KeywordDescription
objetoObject declaration
nuevoCreate instance
ambienteSelf reference (this)
privadoPrivate access modifier
publicoPublic access modifier
libreStatic member
comoInheritance
padreParent reference
KeywordDescription
importarImport module
desdeImport source
exportarExport symbols
KeywordDescription
intentarTry block
capturarCatch block
finalmenteFinally block
lanzarThrow exception
excepcionException type
KeywordDescription
varMutable variable
KeywordDescription
asincronoAsync function (reserved)
esperarAwait (reserved)
IdentifierDescription
consolaConsole object