Skip to content

Instantly share code, notes, and snippets.

@jasonbellamy
Last active September 3, 2016 16:25
Show Gist options
  • Save jasonbellamy/69d96cf55a1acbe1ab01e40153c50ca8 to your computer and use it in GitHub Desktop.
Save jasonbellamy/69d96cf55a1acbe1ab01e40153c50ca8 to your computer and use it in GitHub Desktop.
Get the value of the last item in an array using the arrays index and length
const xs = [1, 2, 3, 4, 5];
const x = xs[xs.length - 1]; //=> 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment