Recursion to reverse string

PHOTO EMBED

Sat Dec 04 2021 23:40:31 GMT+0000 (Coordinated Universal Time)

Saved by @tolanisirius

function reverse(str) {
  if (str === "")
    return "";
  else
    return reverse(str.substr(1)) + str.charAt(0);
}
reverse("hello");
content_copyCOPY

https://www.jshero.net/en/koans/recursion.html