filter(): Selecting Specific Elements - The filter() method creates a new array containing elements from the original array that satisfy a specified condition.
map(): Transforming Array Elements - The map() method creates a new array by applying a function to each element of the original array.
reduce(): Accumulating Values - The reduce() method applies a function against an accumulator and each element in the array to reduce it to a single value.