JavaScript offers a built-in method called reverse which reverses elements in the original array without creating a new one.

Examples

const numArray = [0, 1, 2, 3, 4];
console.log(numArray.reverse()) //[4, 3, 2, 1, 0]