Skip to content

Latest commit

 

History

History
executable file
·
7 lines (5 loc) · 137 Bytes

File metadata and controls

executable file
·
7 lines (5 loc) · 137 Bytes

.reverse()

Reverses the elements in an array.

let backwards = [1, 2, 3, 4, 5].reverse();  // [5, 4, 3, 2, 1]