Skip to content

Instantly share code, notes, and snippets.

@Chuloo
Created January 29, 2019 12:38
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 Chuloo/5ee27a7ad66907279c780bc8937ea27b to your computer and use it in GitHub Desktop.
Save Chuloo/5ee27a7ad66907279c780bc8937ea27b to your computer and use it in GitHub Desktop.
Concatenate elements in an array
// new array
const words = ['Hello', 'world!'];
// join elements in array
const greeting = words.join(' ');
// display new string
console.log(greeting);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment