JavaScript Rekursi Array Terbalik

const arr = ["one", "two", "three"];
arr.reverse();
console.log(arr); // [ "three", "two", "one" ]
I_Like_Cats__