Problem Solving | Reverse a string
Given a string, return a new string with the reversed order of characters. Examples: reverse('apple') === 'leppa' reverse('hello') === 'olleh' reverse('Greetings!') === '!sgniteerG' Pseudo Solution: Convert the string to array Reverse the array usin...





