Spocoman

07. List Of Products

Feb 6th, 2022 (edited)
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function listOfProducts(arr) {
  2.  
  3.     let list = arr.sort();
  4.     for (let i = 1; i <= list.length; i++){
  5.         console.log(`${i}.${list[i - 1]}`);
  6.     }
  7.    
  8. }
Add Comment
Please, Sign In to add comment