Skip to content

Instantly share code, notes, and snippets.

@hoyangtsai
Created December 27, 2021 06:49
Show Gist options
  • Save hoyangtsai/97f1866dd02978976c14eb80cb0652f6 to your computer and use it in GitHub Desktop.
Save hoyangtsai/97f1866dd02978976c14eb80cb0652f6 to your computer and use it in GitHub Desktop.
Add an element ahead of array #snippet #array
// use ES6 unshift
TheArray.unshift(TheNewElement);
// use splice
TheArray.splice(0, 0, TheNewElement);
@hoyangtsai
Copy link
Author

Answer found here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment