Skip to content

Instantly share code, notes, and snippets.

@myogeshchavan97
Created November 19, 2019 06:47
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 myogeshchavan97/923b1a6c6369515899eea8b18651c028 to your computer and use it in GitHub Desktop.
Save myogeshchavan97/923b1a6c6369515899eea8b18651c028 to your computer and use it in GitHub Desktop.
Concat Two Arrays
const first = ["monday","tuesday"];
const second = ["wednesday", "thursday", "friday"];
const combined = first.concat(second);
console.log(combined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment