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
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,21 +4,21 @@ importance: 4
4
4
5
5
# Uppercase const?
6
6
7
-
Examine the following code:
7
+
Undersøg følgende kode:
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
+
Her har du en konstant`birthday`dato og `age`bliver beregnet fra`birthday`ved hjælp af noget kode (den kode er ikke vist for klarhedens skyld - og fordi det ikke er vigtigt i eksemplet).
16
16
17
-
Would it be right to use upper case for`birthday`? For`age`? Or even for both?
17
+
Vil det være rigtigt at bruge store bogstaver til`birthday`? Til`age`? Eller måske til begge?
0 commit comments