Skip to content

Instantly share code, notes, and snippets.

@luisenriquecorona
Created July 8, 2021 04:25
Show Gist options
  • Save luisenriquecorona/b2adca242b99d2003c61cbf60e8e6dd7 to your computer and use it in GitHub Desktop.
Save luisenriquecorona/b2adca242b99d2003c61cbf60e8e6dd7 to your computer and use it in GitHub Desktop.
Cars and Trucks
const cars = ['πŸš—', 'πŸš™'];
const trucks = ['🚚', 'πŸš›'];
const combined = cars.concat(trucks);
// [ 'πŸš—', 'πŸš™', '🚚', 'πŸš›' ]
console.log(cars);
console.log(trucks);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment