Reverse a string
Using a function to reverse a given string.
Expected results:
reverse('apple') // 'elppa
reverse('hello') // 'olleh'
reverse('Learning To Code!') //'!edoC oT gninraeL'
Solution 1 - Built in functions
Convert string into array using split()
Revers...
delvoid.hashnode.dev2 min read