Skip to content

Commit bd55b32

Browse files
author
Veljko Pejović
authored
Update solution.md
1 parent 4881ad6 commit bd55b32

File tree

1 file changed

+5
-5
lines changed
  • 1-js/02-first-steps/04-variables/1-hello-variables

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
In the code below, each line corresponds to the item in the task list.
1+
U donjem kodu svaki red odgovara stavci na listi zadataka.
22

33
```js run
4-
let admin, name; // can declare two variables at once
4+
let admin, ime; // može deklarisadi dvije varijable odjenom
55

6-
name = "John";
6+
ime = "Veljko";
77

8-
admin = name;
8+
admin = ime;
99

10-
alert( admin ); // "John"
10+
alert( admin ); // "Veljko"
1111
```
1212

0 commit comments

Comments
 (0)