diff options
author | ingmrb <ingmrb@users.noreply.github.com> | 2015-11-01 02:19:50 -0300 |
---|---|---|
committer | ingmrb <ingmrb@users.noreply.github.com> | 2015-11-01 02:19:50 -0300 |
commit | 5b58fae6a3770341207e810a466c0be863d80782 (patch) | |
tree | 225dcd29251e08d4eaad56bcbf39123b39d32a71 | |
parent | 4ddd693fc8d364673fb2c5520f8a479ed0b3e0e3 (diff) |
[javascript /es] fixed typos.
-rw-r--r-- | es-es/javascript-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/javascript-es.html.markdown b/es-es/javascript-es.html.markdown index c5419a21..3273f7ad 100644 --- a/es-es/javascript-es.html.markdown +++ b/es-es/javascript-es.html.markdown @@ -186,7 +186,7 @@ miObjeto.miLlave; // = "miValor" // agregar nuevas llaves. miObjeto.miTerceraLlave = true; -// Si intentas accesar con una llave que aún no está asignada tendrás undefined. +// Si intentas acceder con una llave que aún no está asignada tendrás undefined. miObjeto.miCuartaLlave; // = undefined /////////////////////////////////// |