You are viewing a single comment's thread. Return to all comments →
function reverseArray(a) { var reversed = [] for(var i =0; i < a.length; i++) { reversed[i] = a[a.length - 1 - i]; } return reversed }
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 →