Skip to content

Commit 316a02d

Browse files
authored
Merge pull request #70 from Federico-Taborda/patch-8
Tarea
2 parents 63d7e0e + 5b5bbfd commit 316a02d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • 1-js/02-first-steps/04-variables/3-uppercast-constant

1-js/02-first-steps/04-variables/3-uppercast-constant/task.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ importance: 4
22

33
---
44

5-
# Uppercase const?
5+
# ¿const mayúsculas?
66

7-
Examine the following code:
7+
Examina el siguiente código:
88

99
```js
1010
const birthday = '18.04.1982';
1111

1212
const age = someCode(birthday);
1313
```
1414

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í).
1616

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?
1818

1919
```js
2020
const BIRTHDAY = '18.04.1982'; // make uppercase?

0 commit comments

Comments
 (0)