Skip to content

Instantly share code, notes, and snippets.

@IKatsuba
Created April 9, 2021 09:11
Show Gist options
  • Save IKatsuba/e223520a7c24cdb09285ac276ac19a8a to your computer and use it in GitHub Desktop.
Save IKatsuba/e223520a7c24cdb09285ac276ac19a8a to your computer and use it in GitHub Desktop.
const items = [1, 2, 3, 4];
//before
const two = items[1];
const three = items[2];
//after
const two = items.get(1);
const three = items.get(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment