Skip to content

Instantly share code, notes, and snippets.

@leben-jp
Created March 12, 2018 12:24
Show Gist options
  • Select an option

  • Save leben-jp/a8393289b4fa1dac1586f224029bebb2 to your computer and use it in GitHub Desktop.

Select an option

Save leben-jp/a8393289b4fa1dac1586f224029bebb2 to your computer and use it in GitHub Desktop.
var array = ['a', 'b', 'c'];
var value = array[array.length - 1];
console.log(array); // ['a', 'b', 'c']
console.log(value); // 'c'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment