Skip to content

Instantly share code, notes, and snippets.

@tofusoup429
Last active August 12, 2021 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tofusoup429/dc45a9af116ae4a410ae256428870f0e to your computer and use it in GitHub Desktop.
Save tofusoup429/dc45a9af116ae4a410ae256428870f0e to your computer and use it in GitHub Desktop.
const months = ["Jan", "Mar", "Mar", "April"];
let febs = ["Feb", "Feb2", "Feb4"];
months.splice(1, 3, ...febs);
console.log(months);
//output: [Jan,Feb,Feb2,Feb4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment