recursive reverse string function js code example
Example 1: js revers string fucntion
return str.split("").reverse().join("");
Example 2: how to reverse a string in javascript without using reverse method
function reverseString(str) {
if (str === "")
return "";
else
return reverseString(str.substr(1)) + str.charAt(0);
}
reverseString("hello");