These words cannot be used as identifiers (variable names, function names, etc.).
| Keyword | Description |
|---|
si | If condition |
sino | Else |
mientras | While loop |
hacer | Do-while loop |
para | For loop |
en | Iteration (for-in) |
cada | Iteration (for-each) |
romper | Break loop |
continuar | Continue to next iteration |
retornar | Return from function |
| Keyword | Description |
|---|
entero | Integer type |
numero | Decimal number type |
texto | String type |
log | Boolean type |
vacio | Void type (no value) |
lista | List type |
jsn | JSON object type |
| Keyword | Description |
|---|
verdadero | True |
falso | False |
nulo | Null value |
| Keyword | Description |
|---|
y | Logical AND |
o | Logical OR |
no | Logical NOT |
| Keyword | Description |
|---|
objeto | Object declaration |
nuevo | Create instance |
ambiente | Self reference (this) |
privado | Private access modifier |
publico | Public access modifier |
libre | Static member |
como | Inheritance |
padre | Parent reference |
| Keyword | Description |
|---|
importar | Import module |
desde | Import source |
exportar | Export symbols |
| Keyword | Description |
|---|
intentar | Try block |
capturar | Catch block |
finalmente | Finally block |
lanzar | Throw exception |
excepcion | Exception type |
| Keyword | Description |
|---|
var | Mutable variable |
| Keyword | Description |
|---|
asincrono | Async function (reserved) |
esperar | Await (reserved) |
| Identifier | Description |
|---|
consola | Console object |