Advertisement
Spocoman

04. Reverse an Array of Strings

Jan 20th, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve(input) {
  2.  
  3.     console.log(input.reverse().join(" "));
  4.  
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement