Skip to content

Commit 6d06975

Browse files
authored
Translated task.md
1 parent 7f1afa7 commit 6d06975

File tree

1 file changed

+6
-6
lines changed
  • 1-js/02-first-steps/04-variables/3-uppercast-constant

1 file changed

+6
-6
lines changed

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

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

33
---
44

5-
# Uppercase const?
5+
# const didžiosiomis raidėmis?
66

7-
Examine the following code:
7+
Peržiūrėkite sekantį kodą:
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+
Mes turime konstantą `birthday` data ir amžius `age` yra paskaičiuojame pagal `birthday` tam tikro kodo pagalba (jis čia nepateiktas dėl glaustumo ir dėl to, kad tai nėra svarbu užduočiai).
1616

17-
Would it be right to use upper case for `birthday`? For `age`? Or even for both?
17+
Ar būtų gerai naudoti didžiąsias raided `birthday`? O kaip dėl `age`? O galbūt netgi abiems?
1818

1919
```js
20-
const BIRTHDAY = '18.04.1982'; // make uppercase?
20+
const BIRTHDAY = '18.04.1982'; // perrašyti didžiosiomis raidėmis?
2121

22-
const AGE = someCode(BIRTHDAY); // make uppercase?
22+
const AGE = someCode(BIRTHDAY); // perrašyti didžiosiomis raidėmis?
2323
```
2424

0 commit comments

Comments
 (0)