New functional Array Methods

.toReversed()

const myArray = ['A','B','C']

myArray.toReversed()

The original array stays the same

Curved Arrow

Reverses an array by copying.

.toSorted()

const myArray = ['A','B','C']

myArray.toSorted()

The original array remains unsorted

Curved Arrow

Sorts an array by copying.

Read more on

Benevolent Bytes