Learn how to create a function that reverses all the letters from a string. Use three built-in JavaScript methods: split, reverse and join. The reverse() method reverses the array in place. The join() method concatenates all the separated substrings into a new array.
Sort: