0
I'm a student and i want learn something,i'm new at this programming stuff
can any pro programmer in here teach me how to do a reverse display like when you input "how are you doing" and then it comes out backwards like"doing you are how" can someone teach me that?
1 ответ
+ 9
In JavaScript it's
document.write("how are you doing".split(" ").reverse().join(" "))