The Ultimate Backwards Translator 8 lines of code)
5 lines of code
Translate each word backwards
The function code is according to the text reverser (found at the Mirror Your Text translator at the popular translators page) as shown:
t.split(' ').forEach((w) => {r.push(w.split('').reverse().join(''))}); //where t is the text and r is a blank array
If there are any suggestions, please post the suggestions in the suggenstion box because I can't see Disqus.