We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4881ad6 commit bd55b32Copy full SHA for bd55b32
1-js/02-first-steps/04-variables/1-hello-variables/solution.md
@@ -1,12 +1,12 @@
1
-In the code below, each line corresponds to the item in the task list.
+U donjem kodu svaki red odgovara stavci na listi zadataka.
2
3
```js run
4
-let admin, name; // can declare two variables at once
+let admin, ime; // može deklarisadi dvije varijable odjenom
5
6
-name = "John";
+ime = "Veljko";
7
8
-admin = name;
+admin = ime;
9
10
-alert( admin ); // "John"
+alert( admin ); // "Veljko"
11
```
12
0 commit comments