Skip to content

Instantly share code, notes, and snippets.

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