In this chapter, we will cover the following recipes:
- Using Array#find and Array#filter to find values in an array
- Using Array#slice to get a subset of an array
- Using Array#every and Array#some to test array values
- Using Array.map to produce values
- Using Array.reduce to transform data
- Extracting array members with destructuring
- Getting the head and tail of array using the rest operator
- Combining arrays with the spread operator