Commit 03f19e8
authored
Fixing incorrect variable usage
An incorrect variable name was used. Since it was a minor mistake, I immediately corrected it. Wrong use:
```js
let dizi = ['Bilbo', 'Gandalf', 'Nazgul'];
let str = srt.join(';'); // must be: let str = dizi.join(';');
alert( str );
```1 parent 3f32d6b commit 03f19e8
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
466 | 466 | | |
467 | 467 | | |
468 | 468 | | |
469 | | - | |
| 469 | + | |
470 | 470 | | |
471 | 471 | | |
472 | 472 | | |
| |||
0 commit comments