A quick look at the forEach method in JavaScript
The forEach array method basically does something for each item in an array. Sounds straight forward...
In the example below we have an array of goodBoys. forEach item in the array we console log the item adding a ! to the end.
const goodBoys = ["Spi...
davidbell.hashnode.dev2 min read