Skip to content

Commit 84230b9

Browse files
authored
Update 1-js/02-first-steps/04-variables/article.md
1 parent 940457e commit 84230b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/04-variables/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const myBirthday = '18.04.1982';
246246
myBirthday = '01.01.2001'; // ¡error, no se puede reasignar la constante!
247247
```
248248
249-
Cuando un programador está seguro que una variable nunca cambiara, puede declarar la variable con `const` para garantizar y comunicar claramente este hecho a todos.
249+
Cuando un programador está seguro de que una variable nunca cambiará, puede declarar la variable con `const` para garantizar y comunicar claramente este hecho a todos.
250250
251251
252252
### Constantes mayúsculas

0 commit comments

Comments
 (0)