silvana1303

process odd positions

Apr 7th, 2021
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function  solve(arr1){
  2.  
  3.     let arr2 = [];
  4.  
  5.     for (const index in arr1) {
  6.         if (index % 2 == 1){
  7.             arr2.push(arr1[index] * 2);
  8.         }
  9.     }
  10.  
  11.     arr2.reverse();
  12.  
  13.     console.log(arr2.join(' '));
  14. }
Advertisement
Add Comment
Please, Sign In to add comment