Array Methods to Change Element Ordering
In this lesson we will learn how to manipulate element ordering in JavaScript using array methods.
Two such methods to change element ordering are discussed below:
The reverse()
method #
You can change the order of elements in an array with the reverse()
and sort()
methods. Use reverse()
to reverse the order of the elements. Invoking this method, the first item becomes the last, and the last item becomes the first and so forth for the rest of the items as the example below shows:
Get hands-on with 1400+ tech skills courses.