Skip to content

Commit 3b38875

Browse files
author
Veljko Pejović
authored
Update task.md
1 parent 867e0f8 commit 3b38875

File tree

1 file changed

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

1 file changed

+9
-9
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
importance: 4
1+
važnost: 4
22

33
---
44

5-
# Uppercase const?
5+
# Konstanta sa velikim slovima?
66

7-
Examine the following code:
7+
Ispitajte sledeći kod:
88

99
```js
10-
const birthday = '18.04.1982';
10+
const rođenje = '18.04.1982';
1111

12-
const age = someCode(birthday);
12+
const godine = nekiKod(rođendan);
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+
Ovđe imamo konstantu `rođenje` sa datumon i `godine` koje se računaju od `rođenje` uz pomoć nekog koda (nije predviđen za kratkoću i zato što ovđe nisu bitni detalji).
1616

17-
Would it be right to use upper case for `birthday`? For `age`? Or even for both?
17+
Oće li biti u redu koristiti velika slova za `rođenje`? Za `godine`? Ili oboje?
1818

1919
```js
20-
const BIRTHDAY = '18.04.1982'; // make uppercase?
20+
const ROĐENJE = '18.04.1982'; // velika slova?
2121

22-
const AGE = someCode(BIRTHDAY); // make uppercase?
22+
const GODINE = nekiKod(ROĐENJE); // velika slova?
2323
```
2424

0 commit comments

Comments
 (0)