Liliana797979

reverse - fundamentals

May 28th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function revers(first, second, third) {
  2.     let result = first + second + third;
  3.     let final = result.split('').reverse('').join(' ')
  4.     console.log(final);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment