Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 04:16
Show Gist options
  • Save heinthanth/1252d99a3b1bc591609d2c8e03b355f5 to your computer and use it in GitHub Desktop.
Save heinthanth/1252d99a3b1bc591609d2c8e03b355f5 to your computer and use it in GitHub Desktop.
Array Reverse
var x = ["foo", "bar", "baz"];
x = x.reverse();
// now x become ["baz", "bar", "foo"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment