code typo bug fixed in 01_javascript_refresher

pull/416/head
Mohammad Valadi 11 months ago committed by GitHub
parent 0d1e023179
commit 5fbbff38d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3409,7 +3409,7 @@ Let see different examples
```js
const countries = ['Finland', 'Estonia', 'Sweden', 'Norway']
countries.forEach(function (country, index, arr) {
console.log(i, country.toUpperCase())
console.log(index, country.toUpperCase())
})
```

Loading…
Cancel
Save