Skip to content

Instantly share code, notes, and snippets.

@IKatsuba
Created April 9, 2021 09:09
Show Gist options
  • Save IKatsuba/9ffbe6398b7454e9fb5335575af47da1 to your computer and use it in GitHub Desktop.
Save IKatsuba/9ffbe6398b7454e9fb5335575af47da1 to your computer and use it in GitHub Desktop.
The first and last getters example
const items = [1, 2, 3, 4];
//before
const last = items[items.length - 1];
const first = items[0];
//after
const { first, last } = items;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment