You are viewing a single comment's thread. Return to all comments →
js solutions
`function reverseArray(a) { // Write your code here let r = []; for(let i=0; i< a.length; i++){ r.unshift(a[i]); } return r; }
Seems like cookies are disabled on this browser, please enable them to open this website
Arrays - DS
You are viewing a single comment's thread. Return to all comments →
js solutions