desito07

Reverse String

May 24th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function reverseString(stringMe) {
  2. console.log(stringMe.split("").reverse().join(""));
  3. }
  4. reverseString("SoftUni");
Advertisement
Add Comment
Please, Sign In to add comment