twhite96
6/25/2017 - 5:18 AM

Two array algorithms for The Web Developer Bootcamp. Will edit with the other ones later.

Two array algorithms for The Web Developer Bootcamp. Will edit with the other ones later.

function printReverse(arr) {
  return arr.reverse();
}
printReverse([1,2,3,4]);