Skip to content

Instantly share code, notes, and snippets.

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