javascript reverse string and array code example
Example 1: reverse string javascript
const reverse = (str) => str.split("").reverse().join("");
Example 2: reverse a word javascript
function reverseWords(str) {
const allWords = str.split(" ")
return allWords.map(item => item.split("").reverse().join("")).join(" ")
}