Skip to content

Instantly share code, notes, and snippets.

@chris-sev
Created December 20, 2018 17:29
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 chris-sev/665cf59c7430f5ab77e0708d31ba3d1e to your computer and use it in GitHub Desktop.
Save chris-sev/665cf59c7430f5ab77e0708d31ba3d1e to your computer and use it in GitHub Desktop.
Combining Arrays
const months = ['March', 'April', 'May'];
const otherMonths = ['June', 'July'];
const totalMonths = months.concat(otherMonths);
console.log(totalMonths);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment