Question: Write the reverseString function where indicated. The reverseString function should have one parameter named str and return the reversed value of str: If str is
Write the reverseString function where indicated. The reverseString function should have one parameter named str and return the reversed value of str: If str is a string and has a length greater than 0, the function should return the first character of str concatenated to the end of the reversed value of the rest of str (without the first character). This is the recursive step. Otherwise, the function should return '' (the empty string). This is the base case and will ensure that the recursion eventually stops.
This would need to be in a if statement correct? not a for loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
