Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save arrbxr/ffe8812e54ddea0040d2d2463734ca33 to your computer and use it in GitHub Desktop.

Select an option

Save arrbxr/ffe8812e54ddea0040d2d2463734ca33 to your computer and use it in GitHub Desktop.
Reverse Array with reverse() in javaScript created by arrbxr - https://repl.it/@arrbxr/Reverse-Array-with-reverse-in-javaScript
var array = [1,2,3,4,5,6,7];
var newArray = [];
newArray = array.reverse();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment