Skip to content

Commit 6ff9cef

Browse files
authored
Update README.md
1 parent fa69a52 commit 6ff9cef

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ Kada promijenite jedan objekt, mijenjate ih sve.
252252
###### 7. Što je izlaz?
253253

254254
```javascript
255-
let je a = 3;
256-
let je b = new broj (3);
257-
let je c = 3;
255+
let a = 3;
256+
let b = new broj (3);
257+
let c = 3;
258258

259259
console.log (a == b);
260260
console.log (a === b);
@@ -563,7 +563,7 @@ vraća `" 12 "`.
563563
###### 16. Što je izlaz?
564564

565565
```javascript
566-
let je broj = 0;
566+
let broj = 0;
567567
console.log (broj ++);
568568
console.log (++ broj);
569569
console.log (broj);
@@ -1059,9 +1059,9 @@ stog.
10591059
<div onclick = "console.log (" drugi div ")">
10601060
<button onclick = "console.log ('gumb')">
10611061
Klik!
1062-
</ Tipka>
1063-
</ Div>
1064-
</ Div>
1062+
</button>
1063+
</div>
1064+
</div>
10651065
```
10661066

10671067
- A: Vanjski 'div'
@@ -1089,7 +1089,7 @@ događaj. Možete zaustaviti mjehuriće 'event.stopPropagation'
10891089
<p onclick = "console.log ('p')">
10901090
Kliknite ovdje!
10911091
</p>
1092-
</ Div>
1092+
</div>
10931093
```
10941094

10951095
- A: `p`` div`
@@ -1187,7 +1187,7 @@ budući da su funkcije objekti, to je tipa `` objekta '`.
11871187
new broj (0);
11881188
( "");
11891189
("");
1190-
new logički (false);
1190+
new boolean (false);
11911191
nedefiniran;
11921192
```
11931193

0 commit comments

Comments
 (0)