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
-
# Uppercase const?
5
+
# ¿const mayúsculas?
6
6
7
-
Examine the following code:
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
-
Here we have a constant `birthday`date and the `age`is calculated from`birthday`with the help of some code (it is not provided for shortness, and because details don't matter here).
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
-
Would it be right to use upper case for `birthday`? For`age`? Or even for both?
17
+
¿Sería correcto usar mayúsculas para `birthday`? ¿Para`age`? ¿O incluso para ambos?
0 commit comments