Martin_D24

Untitled

Feb 27th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function solve(names){
  2. let sortedList = names.sort().map((name, index) => `${index + 1}.${name}`).join("\n");
  3. console.log(sortedList);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment