Skip to content

Instantly share code, notes, and snippets.

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