Commit 8524ea1
authored
Fixing incorrect variable usage
There is an error in using variable name in line 183.
```js
let diziBenzeri = { // indekslere ve uzunluğa sahiptir => dizi-benzeri
0: "Merhaba",
1: "Dünya",
length: 2
};
for(let item of arrayLike) {} // must be: for(let item of diziBenzeri) {}
```1 parent 3f32d6b commit 8524ea1
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | | - | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
292 | 292 | | |
293 | 293 | | |
294 | 294 | | |
295 | | - | |
| 295 | + | |
0 commit comments