30-Days-Of-React icon indicating copy to clipboard operation
30-Days-Of-React copied to clipboard

Updated # 1. forEach

Open Eronred opened this issue 2 years ago • 0 comments

while reading, realized that "index" is spelled as "i" in console.log

const countries = ['Finland', 'Estonia', 'Sweden', 'Norway']
countries.forEach(function (country, index, arr) {
  console.log(i, country.toUpperCase())
})

to....

...
countries.forEach(function (country, index, arr) {
  console.log(index, country.toUpperCase())
})

Eronred avatar Sep 12 '22 19:09 Eronred