Skip to content

Instantly share code, notes, and snippets.

@IKatsuba
Created April 9, 2021 09:08
Show Gist options
  • Select an option

  • Save IKatsuba/503349c820b1e3e284655aae74df126a to your computer and use it in GitHub Desktop.

Select an option

Save IKatsuba/503349c820b1e3e284655aae74df126a to your computer and use it in GitHub Desktop.
The last getter example
const items = [1, 2, 3, 4];
//before
const last = items[items.length - 1];
//after
const last = items.last;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment