Skip to content

Instantly share code, notes, and snippets.

@tofusoup429
Last active August 12, 2021 09:31
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/44797ffbd067a469e17ea4c98cd873ef to your computer and use it in GitHub Desktop.
Save tofusoup429/44797ffbd067a469e17ea4c98cd873ef to your computer and use it in GitHub Desktop.
const months = ["Jan", "Mar", "Mar", "April"];
months.splice(1, 2, "Feb", "Feb2");
console.log(months)
//output: [Jan,Feb,Feb2,April]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment