The Code
The Code is structured in three functions
GetString
GetString is the controller function. It pulls the user's string from the UI.
When the user value is read, the functions ReverseString and DisplayRetrograde are run.
ReverseString
ReverseString is the logic function. It takes in the user input and runs it through a decrementing for loop. A startValue, endValue, and empty revString variable are initialized outside the loop.
RevString is updated to set it's index value to the inverse userString value. The reversed user string is returned by reverseString.
DisplayRetrograde
DisplayRetrograde is the display function. It takes in the revString.
It targets a paragraph with the id "results", and updates the innerHTML to output revString.