Skip to content

Instantly share code, notes, and snippets.

@kluu1
Created March 20, 2020 04:03
Show Gist options
  • Select an option

  • Save kluu1/476529981fa808e1a954fec433fd5351 to your computer and use it in GitHub Desktop.

Select an option

Save kluu1/476529981fa808e1a954fec433fd5351 to your computer and use it in GitHub Desktop.
const cart1 = ['mouse', 'keyboard'];
const cart2 = ['monitor', 'speakers', 'charger'];
const cart3 = ['cables', 'mouse pad']
const combinedCarts = cart1.concat(cart2, cart3);
console.log(combinedCarts); // ["mouse", "keyboard", "monitor", "speakers", "charger", "cables", "mouse pad"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment