Summary: Going Loopy Over Arrays
Review what we learned about array and object iteration methods.
We'll cover the following...
Key points
- The spread operator can be applied to strings to spread them into an array containing each character as a separate item.
- Iteration methods loop through every value in a collection and apply an operation to each value.
- JavaScript has a number array of methods that apply a callback to every item in the array.
- The