Objectives
- Use the Array.forEach function
- Use the Array.every function
- Use the Array.some function
- Use the Array.map function
- Use the Array.filter function
- Use the Array.reduce function
- Use the Array.sort function
The functions covered on this page take callback functions as arguments. The callback functions are automatically passed each element in the array. These functions could be implemented using iteration (such as a for loop), but this syntax is more concise.