You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/02-first-steps/04-variables/3-uppercast-constant/task.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,19 @@ importance: 4
2
2
3
3
---
4
4
5
-
# Mayusculas const?
5
+
# ¿const mayúsculas?
6
6
7
-
Examina el siguiente codigo:
7
+
Examina el siguiente código:
8
8
9
9
```js
10
10
constbirthday='18.04.1982';
11
11
12
12
constage=someCode(birthday);
13
13
```
14
14
15
-
Aqui tenemos una constante `birthday` y `age` es calculada desde `birthday` con la ayuda de cierto codigo (no esta provisto para abreviacion, y porque los detalles no importan aqui).
15
+
Aquí tenemos una constante `birthday` y `age` es calculada desde `birthday` con la ayuda de cierto código (no está provisto para abreviar y porque los detalles no importan aquí).
16
16
17
-
Seria correcto usar mayusculas para `birthday`? Para `age`? O incluso para ambos?
17
+
¿Sería correcto usar mayúsculas para `birthday`? ¿Para `age`? ¿O incluso para ambos?
0 commit comments