Reverses the input.
reverse("hello") // "olleh" reverse([1,2,3]) // [3,2,1]
Last updated 1 month ago