File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -252,9 +252,9 @@ Kada promijenite jedan objekt, mijenjate ih sve.
252
252
###### 7. Što je izlaz?
253
253
254
254
``` 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 ;
258
258
259
259
console .log (a == b);
260
260
console .log (a === b);
@@ -563,7 +563,7 @@ vraća `" 12 "`.
563
563
###### 16. Što je izlaz?
564
564
565
565
``` javascript
566
- let je broj = 0 ;
566
+ let broj = 0 ;
567
567
console .log (broj ++ );
568
568
console .log (++ broj);
569
569
console .log (broj);
@@ -1059,9 +1059,9 @@ stog.
1059
1059
<div onclick = "console.log (" drugi div ")">
1060
1060
<button onclick = "console.log ('gumb')">
1061
1061
Klik!
1062
- </ Tipka >
1063
- </ Div >
1064
- </ Div >
1062
+ </button >
1063
+ </div >
1064
+ </div >
1065
1065
```
1066
1066
1067
1067
- A: Vanjski 'div'
@@ -1089,7 +1089,7 @@ događaj. Možete zaustaviti mjehuriće 'event.stopPropagation'
1089
1089
<p onclick = "console.log ('p')">
1090
1090
Kliknite ovdje!
1091
1091
</p>
1092
- </ Div >
1092
+ </div >
1093
1093
```
1094
1094
1095
1095
- A: ` p`` div `
@@ -1187,7 +1187,7 @@ budući da su funkcije objekti, to je tipa `` objekta '`.
1187
1187
new broj (0 );
1188
1188
( " " );
1189
1189
(" " );
1190
- new logi č ki (false );
1190
+ new boolean (false );
1191
1191
nedefiniran;
1192
1192
```
1193
1193
You can’t perform that action at this time.
0 commit comments